-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.sass
More file actions
235 lines (190 loc) · 5.15 KB
/
Copy pathstyle.sass
File metadata and controls
235 lines (190 loc) · 5.15 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
.hidden
display: none
body
font-family: novel-mono-pro-extra-compres, sans-serif
font-weight: 200
font-style: normal
margin: 0
padding: 0
header
display: flex
color: #fff
background-color: #222
width: 100%
justify-content: space-between
h1
font-family: novel-mono-pro, sans-serif
font-weight: 800
font-style: italic
margin: 1rem
nav
margin: 1rem
margin-right: 10rem
ul
list-style-type: none
display: flex
li
margin-left: 1rem
cursor: pointer
div.detail
display: none
position: absolute
top: 1.5rem
padding: 5px
min-width: 100%
width: max-content
ul
display: block
padding-left: 0
li
margin: 0
li:hover
position: relative
top: -5px
div.detail
display: block
background-color: #444
main
position: absolute
left: 0
top: 0
width: 100vw
height: 100%
background: #ddd
z-index: -1
display: flex
article
width: 1024px
height: 768px
background-color: #fff
margin: auto
.slide-title
margin: 80px 30px auto
// font-family: Google Fonts, museo sans
font-size: 30px
font-weight: 700
.long-text
margin: 30px 70px auto
text-align: justify
// font-family: museo sans
.thin
padding: 10px
border: 2px solid green
margin: 0px 100px auto
img
float: right
margin: 0 0 1em 1em
.clearfix
overflow: auto
border: 4px solid green
nav
float: left
width: 200px
border: 4px solid pink
section
margin-left: 200px
border: 4px solid yellow
img
float: right
width: 50%
.container
overflow: auto
border: 4px solid green
nav
float: left
width: 25%
section
margin-left: 25%
.relative1
position: relative
.relative2
position: relative
top: -30px
left: 30px
background-color: white
width: 500px
.fixed
position: fixed
bottom: 0
right: 0
width: 200px
background-color: white
.relative
position: relative
width: 600px
height: 200px
.absolute
position: absolute
bottom: 0
right: 0
width: 300px
height: 100px
.code_title
background: burlywood
code
background: #cfcfcf
.g2-2
display: grid
grid-template-columns: 1fr 1fr
div
text-align: center
height: 5rem
display: flex
justify-content: center
align-items: center
transition: all 0.5s
div, label
transition: all 0.5s
.hover-example:hover
font-size: 200%
input#transition-checked:checked ~ label
transform: rotate(180deg)
.rotate-constant
animation-iteration-count: infinite
animation-duration: 3s
animation-name: turnarround
animation-timing-function: linear
#fill-me-correctly-div
display: block
input#fill-me-correctly ~ p
transition: all 0.5s
opacity: 0
input#fill-me-correctly:valid ~ p
opacity: 1
footer
width: 100%
position: absolute
background-color: #888
top: 95vh
left: 0
height: 5vh
display: flex
justify-content: center
align-items: center
cursor: default
i
cursor: pointer
#tree
ul, #tree
list-style-type: none
margin: 0
padding: 0
.caret
cursor: pointer
user-select: none
.caret::before
content: "\25B6"
color: black
display: inline-block
margin-right: 6px
.caret-down::before
transform: rotate(90deg)
.nested
display: none
.active
display: block
@keyframes turnarround
0%
transform: rotateY(0deg)
100%
transform: rotateY(360deg)