-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (70 loc) · 1.2 KB
/
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
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
* {
font-family: 'Press Start 2P', 'Helvetica', 'Arial', sans-serif;
}
#fpsControl {
font-weight: 600;
display: none;
}
#debugPanel {
display: none;
}
.registers {
text-align: center;
font-size: medium;
font-weight: 600;
}
.card-register {
border: 2px solid #282828;
box-shadow: 5px 5px 10px;
}
.stackList {
width: 100%;
height: 100%;
overflow: hidden;
}
.stackItem {
list-style: none;
text-align: left;
width: 100%;
height: 100%;
}
.debugList {
width: 100%;
height: 100%;
display: block;
position: absolute;
overflow: auto;
margin: 0;
padding: 0;
font-size: 1.2em;
list-style: none;
text-align: left;
}
/*Colors*/
.color-granite-gray {
background-color: #626868;
}
.color-cadet-blue-crayola {
background-color: #AAABBC;
}
.color-blue-gray {
background-color: #6C91C2;
}
.color-periwinkle-crayola {
background-color: #C3C9E9;
}
.color-royal-blue-dark {
background-color: #0A2463;
}
.color-languid-lavender {
background-color: #D3C1D2;
}
.color-retro-orange {
background-color: #FFB000;
color: #282828;
}
@media(max-width: 576px) {
canvas {
width: 100%;
}
}