-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
113 lines (91 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css?family=ZCOOL+QingKe+HuangYou&display=swap');
body {
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
text-align: center;
width: 80%;
margin-left: 10%;
background: #3B171A;
color: #F0FFCE;
font-family: 'ZCOOL QingKe HuangYou', cursive;
}
@media (max-width: 1000px) {
body {
width: 95%;
margin-left: 2.5%;
}
}
#title {
font-size: 3em;
}
#desc {
margin-bottom: 2%;
font-size: 1.5em;
}
a {
color: #F0FFCE;
}
a:hover {
color: #CCC9A1;
}
/* Animation styling */
#container {
width: 100%;
height: 400px;
padding: 0 10px 10px;
margin: auto;
}
#visual {
width: 100%;
height: auto;
margin: auto;
}
#bars-block {
width: 100%;
padding: 0 10px;
height: 100px;
background: black;
margin: auto;
}
@media (max-width: 1000px) {
#container {
padding: 0;
}
#bars-block {
padding: 0
}
}
/* End animation styling */
/* Options styling */
#options {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
margin-bottom: 1%;
}
.option {
margin: 0 1%;
font-size: 2em;
width: 20%;
}
.option > .input {
width: 100%;
}
.licorice-div {
background: #210D0F;
}
/* End option styling */
/* Media control styling */
#media-control {
width: 100%;
}
.material-icons {
cursor: pointer;
}
.material-icons:hover {
color: #CCC9A1;
}
/* End media control */