-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (107 loc) · 1.86 KB
/
style.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
129
130
/* Reset styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Base font size */
html {
font-size: 15px;
}
/* Mobile-first styles */
body {
font-family: 'Verdana', sans-serif;
line-height: 1.5;
color: #ccc;
background: #222;
margin: 15px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 70%;
}
.col {
display: flex;
flex-direction: column;
margin-right: 20px;
}
.playlist-box {
margin: 10px 0px;
}
.box {
border-width: 2px;
border-color: #FFFFFF #808080 #808080 #FFFFFF;
border-style: solid;
background-color: #C0C0C0;
color: #151515;
width: 90vw;
display: inline-block;
}
a {
color: #FCFF4B;
}
a:hover {
color: #ccc;
}
/* switch to .title h3 if no other uses arise */
.box h3 {
margin: 0.5em 0;
}
.box a {
color: #222;
}
.box a:hover {
color: #FCFF4B;
}
.title {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0px 10px;
}
button {
float: right;
margin: 5px 5px;
padding: 0px 2px;
}
.content {
display: none;
padding: 20px 10px 10px 35px;
}
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */
.block {
display: inline-block;
margin: 20px;
}
.box {
width: 400px;
}
.countd {
position: absolute;
top: 15px;
right: 10px;
text-align: center;
}
.row {
display: flex;
flex-direction: row;
}
}
.banner {
background-color: #fcff4bb7;
overflow-x: hidden;
}
.banner-content {
color: black;
display: block;
width: 100vw;
transform: translateX(0%);
animation: move 15s linear infinite alternate;
}
@keyframes move {
to { transform: translateX(89.5%); }
}