-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (55 loc) · 904 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
52
53
54
55
body{
background-color: #CCC;
text-align: center;
}
.selection{
font-size: 3em;
background-color: inherit;
border: none;
padding:0em 0.5em;
margin:0em 0.1em;
outline: none;
}
.selection:hover{
transform: scale(1.2);
}
table{
align-self: center;
font-size: large;
margin: 1em auto 0;
}
td{
padding:0;
width:50%;
font-size:xx-large;
font-weight: bold;
}
tbody td{
padding:0 1em;
font-size: 3em;
}
.scoreDisplay{
font-size:smaller;
font-weight: normal;
color: rgb(80, 80, 80);
}
.info{
color: azure;
top: 0;
left: 0;
margin: 0;
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.829);
display: none;
font-size: 3em;
}
#restart{
margin: 0.2em 0;
padding: 0.2em;
font-size: xx-large;
font-family: cursive;
font-weight: 900;
}
#hid{display: none;}