-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (97 loc) · 1.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
font-family: Helvetica, sans-serif;
}
.container {
padding: 4rem;
margin: 2rem;
}
.row {
margin: 0 auto;
width: 400px;
}
h1,
h3 {
letter-spacing: 0.125rem;
text-align: center;
}
h1 {
margin-bottom: 1rem;
color: #343a40;
}
h3 {
font-weight: 400;
}
#board,
#refreshBtn {
margin-left: 6rem;
}
#board:hover {
cursor: pointer;
}
.square {
float: left;
clear: right;
width: 100px;
height: 100px;
background-color: #f8F9fa;
margin: auto;
text-align: center;
vertical-align: middle;
color: #343a40;
line-height: 100px;
font-size: 5rem;
}
.top {
border-bottom-color: rgba(52, 58, 64, 0.500);
border-bottom-style: solid;
border-bottom-width: 2.5px;
}
.bottom {
border-top-color: rgba(52, 58, 64, 0.500);
border-top-style: solid;
border-top-width: 2.5px;
}
.left {
border-right-color: rgba(52, 58, 64, 0.500);
border-right-style: solid;
border-right-width: 2.5px;
}
.right {
border-left-color: rgba(52, 58, 64, 0.500);
border-left-style: solid;
border-left-width: 2.5px;
}
#square3 {
border-top-right-radius: 0.5rem;
}
#square9 {
border-bottom-right-radius: 0.5rem;
}
#square7 {
border-bottom-left-radius: 0.5rem;
}
#square1 {
border-top-left-radius: 0.5rem;
}
#refreshBtn {
margin-top: 1rem;
visibility: hidden;
}
button {
width: 200px;
height: 50px;
margin: auto;
text-align: center;
vertical-align: middle;
line-height: 50px;
font-size: 1.50rem;
color: #f8F9fa;
background-color: rgba(52, 58, 64, 0.500);
border-radius: 0.50rem;
border: none;
}
button:hover {
color: rgba(52, 58, 64, 0.500);
background-color: #f8F9fa;
border: none;
}