-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (109 loc) · 2.4 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap');
body {
background: linear-gradient(to bottom,
#C33C23, #FFB447, #FFB447, #C33C23);
background-repeat: no-repeat;
background-attachment: fixed;
height: 100%; /* Assuming width will always stay at 100%*/
margin: 0px;
font-family: 'Comic Neue', cursive; /* Note that this doesn't apply to bottons in the ESR, for some reason */
}
/* Top / Title formatting */
div.top_container {
display: flex;
}
div.title_div {
margin-left: auto;
margin-right: auto;
background: linear-gradient(#9A91AC, #FFB9C4);
padding: 15px 80px;
border: 3px solid black;
border-radius: 0px 0px 60px 60px;
}
div.title_div h1 {
margin: 0px;
}
/* Spacer formatting */
div.spacer {
flex: 0 0 0;
}
div.middle_container > div {
flex: auto;
}
/* Player holder formatting */
div.player_holder {
padding-left: 25px;
justify-content:center;
align-items:center;
}
div.player_holder p {
font-size: 30px;
}
/* Middle contaienr formatting */
div.middle_container {
flex: 0 0;
display: flex;
justify-content:center;
align-items:center;
height: auto;
}
/*div.middle_container div {
flex: auto;
}*/
/* Middle stuff formatting */
div.middle_element {
/*display:flex;*/
display: inline-block;
flex-direction: column;
justify-content:center;
align-items:center;
background: linear-gradient(#CDF1AF, #88BBE4);
border: 3px solid purple;
border-radius: 15px;
margin: 0px;
padding: 25px;
}
div.middle_element p {
}
/* Input formatting */
div.input_field_container {
display: inline-block;
background: #FFB447;
/*border: 1px solid green;*/
border-radius: 20px;
padding: 20px;
}
input {
font-family: 'Comic Neue', cursive;
background: #FFB447;
border: 0px; /* Disabling input browser style */
border-bottom: 1px solid purple;
padding: 10px 0px 10px 0px;
}
button {
font-family: 'Comic Neue', cursive;
background: #469BC3;
border: 0px;
border-radius: 10px;
box-shadow: 5px 5px 0px 0px #9B90A8;
padding: 10px 20px 10px 20px;
}
button:active {
color: red;
}
/* Alert box formatting */
div.alert_box_container {
position: fixed;
top: 0px;
left: 0px;
display: flex;
justify-content:center;
align-items:center;
width: 100%;
height: 100%;
background-color: rgba(180, 180, 180, .75);;
}
div.alert_box {
font-size: 50px;
white-space: pre-line;
}