-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (112 loc) · 2.49 KB
/
style.css
File metadata and controls
127 lines (112 loc) · 2.49 KB
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
html, body {
margin: 0;
padding: 0;
background: rgb(70,70,70);
}
.container {
display: flex;
}
#best {
padding: 0 10px 0 10px;
color: gold;
font-size: 1em;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
h1 {
color: gold;
text-align: center;
font-size: 3em;
font-family: 'ZCOOL KuaiLe', cursive;
letter-spacing: 0.5em;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
#name {
padding: 0 10px 0 10px;
}
#sketch-holder {
/* border: 2px red solid; */
display: flex;
justify-content: center;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
#score {
/* border: 2px red solid; */
padding: 10px 0px 0px 0px;
display: flex;
justify-content: center;
font-family: 'ZCOOL KuaiLe', cursive;
font-size: 2em;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
canvas {
border: 10px solid gold;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
#leaderboard {
width: 70vw;
margin: auto;
background: rgba(0,0,0,0.6);
}
#leader-container {
margin: 10px;
padding: 0px 10px 5px 5px;
}
h2 {
color: #ED225D;
text-align: center;
font-size: 2.25em;
font-family: 'ZCOOL KuaiLe', cursive;
letter-spacing: 0.5em;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
table {
width: 100%;
color: white;
text-align: center;
font-size: 1.35em;
font-family: 'ZCOOL KuaiLe', cursive;
letter-spacing: 0.5em;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
th {
text-decoration: underline;
}
hr {
color: white;
margin: 20px 0px 20px 0px;
}
#footer {
padding: 10px;
color: white;
display: flex;
justify-content: left;
}
a {
font-family: 'ZCOOL KuaiLe', cursive;
font-size: 1.3em;
color: lightgray;
}
a:hover {
color: white;
}