-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (59 loc) · 1.13 KB
/
style.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
body {
background-color: #4CAF50;
font: 400 20pt TW Cen MT;
}
#logBox {
display: inline-block;
background-color: #F1F8E9;
height: 100%;
width: 15%;
position: absolute;
top: 0%;
left: 0%;
overflow-y: scroll;
padding: 0 16px;
word-wrap: break-word;
}
.grid {
width: 40%;
height: 40vw;
position: absolute;
top: 10%;
}
#human {
left: 18%;
}
#computer {
left: 59%;
}
.space {
display: inline-block;
width: 3.3vw;
height: 3.3vw;
vertical-align: top;
text-align: center;
border: thin solid black;
align-items: center;
font-size: 2.5vw;
}
button {
background-color: inherit;
font: inherit;
border-radius: 4px;
height: 36px;
padding: 0px 16px;
margin: 8px 14px;
outline: none;
position: absolute;
bottom: 1%;
right: 1%;
}
button:hover {
box-shadow: 0px 2px 4px -1px rgba(0,0,0,.2), 0px 4px 5px 0px rgba(0,0,0,.14), 0px 1px 10px 0px rgba(0,0,0,.12);
}
button:active {
box-shadow: 0px 5px 5px -3px rgba(0,0,0,.2), 0px 8px 10px 1px rgba(0,0,0,.14), 0px 3px 14px 2px rgba(0,0,0,.12);
}
span {
font-size: 2vw;
}