-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmain.css
56 lines (49 loc) · 816 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
* {
margin: 0;
padding: 0;
}
html {
box-sizing: border-box;
}
body {
text-align: center;
}
h1 {
font-family: cursive;
margin: 10px 0;
}
.cell {
display: inline-block;
border: 1px solid black;
width: 100px;
height: 100px;
margin-top: 1px;
padding: 15px;
}
.cell p {
text-align: center;
margin-top: 33%;
font-size: 24pt;
font-family: Helvetica, Arial;
}
.cell.win {
background-color: lightgreen;
}
button {
border-radius: 30%;
background-color: blue;
font-size: 16pt;
padding: 14px;
margin: 10px;
color: white;
border: 3px solid lightblue;
box-shadow: 1px 1px 2px 0px black;
outline: none;
cursor: pointer;
}
button:active {
box-shadow: none;
position: relative;
top: 3px;
left: 3px;
}