-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
59 lines (53 loc) · 865 Bytes
/
main.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
html {
font-family: 'Poiret One', cursive;
}
.title {
text-align: center;
font-size: 300%;
color: teal;
margin: 0;
margin-top: .5%;
}
.board-size {
text-align: center;
font-size: 120%;
}
.board-size-input {
text-align: center;
border-top: 1px solid #9e9e9e !important;
max-width: 35%;
}
.undo {
margin-left: 20%;
}
.current-player {
border: 3px solid teal;
display: inline;
min-height: 36px;
line-height: 36px;
padding: .9%;
margin-left: 45%;
}
.board {
overflow: auto;
white-space: nowrap;
position: relative;
/*top: 30px;*/
margin: auto 0;
text-align: center;
}
.row {
}
.box {
margin: .5%;
height: 150px;
width: 150px;
border: 3px solid black;
display: inline-block;
text-align: center;
line-height: 9.5em;
color: teal;
/*border-color: teal;*/
font-weight: bold;
border-radius: 15px;
}