-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (75 loc) · 1.39 KB
/
index.css
File metadata and controls
84 lines (75 loc) · 1.39 KB
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
/* Sidebar styles */
.sidebar {
height: 100%;
width: 0;
position: fixed;
top: 0;
left: 0;
background-color: #F8A16C; /* Laranja suave */
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
z-index: 1000;
}
.sidebar a {
padding: 15px 20px;
text-decoration: none;
font-size: 1.1em;
color: white;
display: block;
font-family: 'Roboto', sans-serif;
transition: background-color 0.3s ease;
}
.sidebar a:hover {
background-color: #f37021;
}
.open-btn {
font-size: 24px;
cursor: pointer;
background-color: #F8A16C;
color: white;
padding: 15px 25px;
border: none;
position: fixed;
top: 10px;
left: 10px;
z-index: 1001;
border-radius: 50%;
transition: background-color 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.open-btn:hover {
background-color: #F37021;
}
.close-btn {
position: absolute;
top: 20px;
right: 25px;
font-size: 30px;
color: white;
cursor: pointer;
}
.content {
margin-left: 0;
transition: margin-left 0.5s;
padding: 20px;
}
.hidden {
display: none;
}
@keyframes slideIn {
from {
width: 0;
}
to {
width: 250px;
}
}
@keyframes slideOut {
from {
width: 250px;
}
to {
width: 0;
}
}