blob: 6ebfa9e79cf953bebb1da33eb557e9c9fbc415ae (
plain) (
blame)
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
|
/*
Please refrain from editing the style.css file and only edit the style.scss file.
*/
$default-font: Play, sans-serif;
body {
font-family: $default-font;
}
.dark {
background-color: #212121;
color: #ffffff;
}
.light {
background-color: #ffffff;
color: #000000;
}
ul {
.yt {
margin: 0 auto;
text-align: center;
}
.none {
list-style-type: none;
}
}
li {
.yt-vid-list {
display: inline-block;
vertical-align: top;
}
}
|