-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (51 loc) · 923 Bytes
/
style.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
body {
margin: 0;
font-family: Arial, sans-serif;
}
.conedison{
margin-left: 200px;
}
.sign-out {
margin-top: auto; /* Push the sign-out button to the bottom */
padding: 20px;
display: flex;
justify-content: center;
}
button {
background-color: #ff4f4f;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
}
button:hover {
background-color: #d14141;
}
.sidebar {
height: 100vh;
width: 200px;
position: fixed;
background-color: #1886e7;
padding-top: 20px;
color: white;
display: flex;
flex-direction: column;
}
.sidebar h2 {
color: white;
text-align: center;
}
.sidebar ul {
list-style-type: none;
padding: 0;
flex-grow: 1;
}
.sidebar ul li a {
color: white;
padding: 10px 15px;
text-decoration: none;
display: block;
}
.sidebar ul li a:hover {
background-color: #575757;
}