-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile1.css
116 lines (96 loc) · 1.7 KB
/
profile1.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* profile1.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
display: flex;
}
.sidebar {
width: 250px;
background-color: #2e3b4e;
color: white;
padding: 20px;
}
.sidebar h2 {
text-align: center;
margin-bottom: 30px;
}
.sidebar ul {
list-style: none;
padding: 0;
}
.sidebar ul li {
margin: 10px 0;
}
.sidebar ul li a {
color: white;
text-decoration: none;
font-size: 16px;
}
.sidebar ul li a:hover {
text-decoration: underline;
}
.main-content {
flex: 1;
padding: 20px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #1d2830;
color: white;
padding: 10px 20px;
}
.header h1 {
margin: 0;
}
.logout-btn {
background-color: #e04e39;
color: white;
padding: 8px 16px;
border: none;
cursor: pointer;
text-decoration: none;
}
.logout-btn:hover {
background-color: #c43a1d;
}
.content {
background-color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
h2 {
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
}
label {
font-size: 16px;
margin-bottom: 5px;
}
input {
padding: 10px;
margin-bottom: 15px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px;
border: none;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #45a049;
}