-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojeto1.css
More file actions
42 lines (42 loc) · 761 Bytes
/
Copy pathprojeto1.css
File metadata and controls
42 lines (42 loc) · 761 Bytes
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
body {
transition: background 0.3s, color 0.3s;
}
.dark-mode {
background-color: #121212;
color: white;
}
.sidenav {
height: 100vh;
width: 250px;
position: fixed;
top: 0;
left: 0;
background-color: #333;
padding-top: 20px;
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}
.sidenav a {
padding: 15px 20px;
text-decoration: none;
color: white;
display: block;
font-size: 18px;
font-weight: bold;
transition: background 0.3s;
}
.sidenav a:hover {
background-color: #575757;
}
.content {
margin-left: 270px;
padding: 20px;
}
.dark-mode-toggle {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
}