forked from kontur-web-courses/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (45 loc) · 890 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
body {
display: flex;
flex-direction: column;
}
.container {
margin: 40px auto;
/*display: inline-block;*/
width: auto;
background-color: lightgoldenrodyellow;
padding: 10px;
}
.table {
border-collapse: collapse;
}
.table td {
min-width: 20px;
height: 28px;
padding: 20px;
font-size: 24px;
font-family: "Consolas", monospace;
text-align: center;
border: 1px solid #333;
cursor: pointer;
}
.table tr:first-child td {
border-top-color: transparent;
}
.table tr:last-child td {
border-bottom-color: transparent;
}
.table td:first-child {
border-left-color: transparent;
}
.table td:last-child {
border-right-color: transparent;
}
.resetButton {
display: block;
margin: 20px auto;
padding: 10px;
background: none;
font-size: 16px;
border: 3px solid orange;
border-radius: 5px;
}