-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 769 Bytes
/
style.css
File metadata and controls
50 lines (43 loc) · 769 Bytes
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
body{
background: #0b0e30;
}
button{
float: left;
}
button:focus {
outline: none;
}
#title-bar{
width: 100%;
background-color: #0b0e30;
text-align: center;
color: #34386d;
font-size: calc(100vw / 12);
font-family: Arial, Helvetica, sans-serif;
}
.tile{
width: calc(100% / 16);
height: calc(100vw / 16);
background-color: #34386d;
text-align: center;
color: white;
padding: 0px;
margin: 0px;
line-height: 0px;
letter-spacing: 0px;
font-size: calc(100vw / 16);
}
#end-game-pop-up{
width: 60%;
height: 60vw;
/* padding: 10vw;
*/ margin: 0px;
text-align: center;
position: absolute;
left: 20vw;
top: calc(100vw / 8);
background-color: #0b0e30;
font-family: Arial, Helvetica, sans-serif;
font-size: calc(100vw / 16);
line-height: 10vw;
}