-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
294 lines (252 loc) · 4.91 KB
/
style.css
File metadata and controls
294 lines (252 loc) · 4.91 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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
:root{
--bordercolor:#ccc;
--textcolor:rgba(0,0,0,0.6);
--buttonwidth:40px;
--iconopacity: 0.65;
--letterspace:0.02rem;
}
body{
background: #f9f9f9;
margin: 0;
padding: 0;
font-size: 16px;
}
*{
margin: 0;
padding: 0;
font-size: inherit;
font-family: 'Roboto';
text-shadow: none;
letter-spacing: var(--letterspace);
box-sizing: border-box;
}
.wrapper{
display: grid;
grid-template-areas:
"header header header header"
"sidebar videos videos videos";
grid-template-columns: 240px 1fr 1fr;
position: relative;
}
/* header */
.top{
display: grid;
grid-template-columns: repeat(2,auto) 1fr repeat(4,auto);
align-items: center;
grid-gap: 8px;
background: white;
padding: 8px 15px;
grid-area: header;
}
.back_btn, .top > .search_btn{
display: none;
}
.top button{
width: var(--buttonwidth);
height: var(--buttonwidth);
background: transparent;
border: none;
padding: 8px;
cursor: pointer;
opacity: var(--iconopacity);
}
.user_avatar img{
width: 100%;
height: 100%;
}
.user_avatar{
opacity: 1 !important;
}
.top .logo {
opacity: 1;
width: 100px;
}
.search{
display: grid;
grid-template-columns: 30px 1fr [search-start] minmax(100px,500px) auto 1fr 30px;
align-items: center;
}
.search input{
padding-left: 5px;
height:32px;
border: 1px solid var(--bordercolor);
border-right: none;
grid-column: search-start;
}
.search button{
background: #f8f8f8;
border: 1px solid var(--bordercolor);
height: 32px;
width: 70px;
padding:5px
}
@media(max-width:700px){
.search{
display: none;
}
.top > .search_btn{
display: block;
justify-self: right;
}
.top.search_active > * {
display: none;
}
.top.search_active .search{
display: grid;
grid-column: 2/-1;
grid-template-columns: [search-start] 1fr auto;
}
.top.search_active .back_btn{
display: inline;
}
}
.sidebar{
width: 240px;
background: white;
color: black;
top:0;
width: 240px;
grid-area: sidebar;
position: absolute;
transition: all 0.5s;
}
.sidebar ul{
border-bottom: 1px solid rgba(0,0,0,0.1);
padding: 10px 0;
}
.sidebar .title{
text-transform: uppercase;
padding-left: 18px;
padding-top: 10px;
display: block;
color: rgba(0,0,0,0.7);
font-weight: 600;
}
.sidebar ul li{
display: grid;
grid-template-columns: 24px 1fr;
grid-gap: 24px;
padding: 8px;
align-items: center;
padding: 10px 23px;
cursor: pointer;
}
.sidebar li:hover{
background: rgba(0,0,0,0.1);
}
.sidebar ul:first-of-type li:first-child{
background: rgba(0,0,0,0.1);
}
.sidebar ul li svg{
opacity: var(--iconopacity);
}
.sidebar_small{
display: none;
background: white;
min-height: 100vh;
}
.sidebar_small ul li{
display: grid;
grid-template-columns: 28px;
justify-content: center;
justify-items: center;
grid-gap: 0;
padding: 20px 0;
font-size: 0.6rem;
letter-spacing: 0.03rem;
}
.sidebar_small ul li:first-child{
color: #c00;
fill: #c00;
}
.sidebar_small ul li svg{
opacity: var(--iconopacity);
}
.sidebar_small ul li:hover{
background: rgba(0,0,0,0.1);
cursor: pointer;
}
@media(max-width:1300px){
.sidebar{
position: absolute;
width: 240px;
left: -240px;
top:0;
z-index: 10;
}
.sidebar_small{
display: block;
}
.wrapper{
grid-template-columns: 70px 1fr 1fr;
}
}
@media(max-width:700px){
.sidebar_small{
display: none !important;
}
.wrapper{
grid-template-columns: 1fr;
}
}
.wrapper.menu_overlay .sidebar{
left:0;
}
.wrapper.menu_small .sidebar_small{
display: block;
}
.wrapper.menu_small{
grid-template-columns: 70px 1fr 1fr ;
}
.wrapper.wrapper.menu_small .sidebar{
left:-240px;
}
/* Videos Section */
.videos{
grid-area: videos;
display: grid;
grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
grid-gap: 15px;
padding: 0 10px;
}
.videos h2{
grid-column: 1 / -1;
padding: 35px 20px 0 20px;
font-size: 1.25rem;
letter-spacing: 0.06rem;
}
.videos .video{
display: grid;
grid-template-columns: 55px 1fr;
grid-gap: 5px;
font-size: 1rem;
align-items: center;
cursor: pointer;
margin-bottom: 35px;
}
.videos .video img{
width: 100%;
}
.videos .video .avatar{
padding: 4px;
height: 100%;
}
.videos .video .thumbnail{
grid-column: 1 / -1;
}
.videos .video .channel,.videos .video .details{
grid-column: span 1 / -1;
color: var(--textcolor);
font-weight: bold;
font-size: 0.8rem;
}
.videos .video .title{
font-size: 0.9rem;
font-weight: bold;
line-height: 1.2;
}
@media(max-width:700px){
.videos{
grid-column: 1 / -1;
}
}