-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (91 loc) · 1.59 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (91 loc) · 1.59 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
body {
font: 16px 'Roboto', sans-serif;
min-height: 100vh;
width: 100%;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.body-header {
display: flex;
margin-top: 1rem;
flex-wrap: wrap;
justify-content: space-between;
}
.main-text {
text-align: center;
font-size: 2rem;
}
#status {
display: inline-flex;
background: #aaeeaa;
color: #115511;
padding: 12px 8px;
}
.reset-btn {
display: inline-flex;
flex-grow: 0;
border: solid 1px #ababab;
padding: 4px;
cursor: pointer;
}
.content {
margin: 16px;
display: flex;
justify-content: center;
}
.grid {
display: grid;
grid-template-columns: 6rem 6rem 6rem;
grid-template-rows: 6rem 6rem 6rem;
}
.box {
border: solid 1px #ababab;
cursor: pointer;
font-family: 'Consolas', menlo, monospace;
font-size: 4.2rem;
text-align: center;
user-select: none;
}
/* modal for choosing what to play As */
.modal-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.7);
display: flex;
justify-content: center;
align-items: center;
}
.modal {
padding: 5vw;
background: #ffffff;
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25), 2px 2px 6px 0 rgba(255, 255, 255, 0.25);
}
.modal .head h3 {
color: #115511;
font-weight: 300;
line-height: 2rem;
}
.modal button {
padding: 2px 16px;
background: #aaeeaa;
color: #115511;
margin: 8px;
border: none;
cursor: pointer;
}
.none {
display: none;
}
.primary {
animation: blink 0.3s ease infinite;
}
@keyframes blink {
from { background: #ababab; }
to { background: #ffc600; }
}