-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
128 lines (114 loc) · 2.07 KB
/
index.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
117
118
119
120
121
122
123
124
125
126
127
128
/* start styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&family=VT323&display=swap");
body {
margin: 0;
background: #444;
font-family: "Poppins";
}
h1 {
margin: 0;
}
li,
ul {
list-style-type: none;
padding: 0;
}
main {
padding: 140px 40px 40px;
color: #bbb;
}
/* solution styles */
.menu {
position: fixed;
left: 0;
right: 0;
display: flex;
align-items: center;
padding: 20px;
background-color: #333;
color: white;
}
.site-title {
margin-left: auto;
font-size: 2rem;
}
.menu [type="checkbox"] {
opacity: 0;
height: 0;
width: 0;
margin: 0;
}
.menu-bar {
display: flex;
align-items: center;
position: relative;
/* border: 1px solid black; */
width: 2em;
height: 1.5em;
cursor: pointer;
z-index: 40;
}
.menu-bar span {
display: block;
border: 1px solid white;
width: 100%;
transition: 150ms;
}
.menu-bar span::before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
box-sizing: border-box;
border: 1px solid white;
width: 100%;
transform-origin: left;
transition: 300ms;
}
.menu-bar span::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
display: block;
box-sizing: border-box;
border: 1px solid white;
width: 100%;
transform-origin: left;
transition: 300ms;
}
.menu [type="checkbox"]:checked + label > span {
visibility: hidden;
}
.menu-nav {
position: absolute;
top: 0;
left: 0;
display: flex;
flex-direction: column;
row-gap: 1rem;
background-color: #222;
padding: calc(40px + 4rem) 20px;
width: 15em;
height: 100vh;
transform: translateX(-100%);
transition: 300ms;
}
.menu-nav .nav-item {
color: white;
}
/* open state */
.menu [type="checkbox"]:checked + label > span::before {
transform: rotateZ(44deg);
visibility: visible;
}
.menu [type="checkbox"]:checked + label > span::after {
transform: rotateZ(-44deg);
visibility: visible;
}
.menu [type="checkbox"]:checked ~ .menu-nav {
transform: translateX(0);
box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.3);
}
/* transitions */