This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
147 lines (120 loc) · 2.48 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
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
@import url('https://fonts.googleapis.com/css?family=Unica+One');
@import url('https://fonts.googleapis.com/css?family=Share+Tech+Mono');
@import url('https://fonts.googleapis.com/css?family=Quicksand');
@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
overflow: hidden;
font-family: 'Roboto';
}
h1 {
text-align: center;
font-family: 'Unica One';
font-size: 55px;
padding-bottom: 10px;
border-bottom: 2px solid black;
}
.important_letter {
color: royalblue;
}
#score_div {
display: block;
position: fixed;
right: 30px;
bottom: 100px;
font-family: 'Quicksand';
}
#comparisons,
#runtime {
font-weight: bold;
font-size: 20px;
}
td {
padding: 0 7.5px;
}
#algo_info {
display: block;
position: fixed;
right: 30px;
top: 150px;
background-color: rgba(255, 255, 255, 0.9);
font-family: 'Quicksand';
font-weight: bold;
font-size: 17.5px;
}
#algorithm_div {
font-size: 35px;
}
#algorithm_div::first-letter {
color: royalblue;
}
#algorithm_settings {
border-left: 1.5px solid dimgray;
display: block;
position: fixed;
left: 25px;
top: 350px;
padding: 15px 2.5px;
background-color: rgba(255, 255, 255, 0.9);
}
#theme_div {
position: fixed;
left: 25px;
bottom: 25px;
background-color: rgba(255, 255, 255, 0.75);
border-left: 1.5px solid dimgray;
border-radius: 2.5px;
}
select,
input {
font-size: 12.5px;
margin-bottom: 1px;
font-family: 'Roboto';
padding: 2.5px 7.5px;
border: 1px solid #cecece;
border-radius: 1px;
}
select:focus,
input:focus {
outline: none;
}
#algorithm_settings input[type="button"] {
background-color: royalblue;
border: none;
color: white;
padding: 7.5px 15px;
border-radius: 2.5px;
font-size: 15px;
margin-top: 12.5px;
transition: .5s ease;
}
#algorithm_settings input[type="button"]:hover {
cursor: pointer;
opacity: 0.8;
}
td:last-child {
text-align: right;
}
#canvas_div {
display: block;
margin: 0 auto;
width: 70%;
/* border-left: 2px dashed dimgray;
border-right: 2px dashed dimgray; */
}
canvas {
display: block;
margin: 0 auto;
/* background-color: aliceblue; */
/* border-bottom: 1.5px solid dimgray; */
}
footer {
display: block;
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
text-align: center;
padding-bottom: 10px;
font-family: 'Share Tech Mono';
}