-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (44 loc) · 864 Bytes
/
styles.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
#canvasContainer {
display: flex;
align-items: center;
justify-content: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
margin-top: 20px !important;
margin-bottom: 10px !important;
}
#subtitle {
margin-bottom: 10px !important;
}
#canvas {
max-width: 100vw;
min-width: 1000px;
min-height: 600px;
height: 600px;
background-color: #353889;
}
#instructions {
text-align: center;
color: #90adb7;
font-size: 11pt;
margin-top: 20px;
margin-bottom: 20px;
}
#github_stuff {
margin-top: 10px;
width: 100%;
text-align: center;
}
#github_stuff a {
font-size: 10pt;
vertical-align: middle;
position: relative;
top: -5px;
color: #90adb7;
}
#github_stuff a:hover {
color: #5775b7;
}