-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (67 loc) · 1.17 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
*{
margin: 0;
}
body {
background-color: rgb(51, 50, 51);
font-family: 'Open Sans', sans-serif;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1{
text-align: center;
margin-top: 72px;
}
.content{
width: 100%;
display: flex;
margin-top: 72px;
justify-content: center;
position: relative;
}
table {
border-collapse: collapse;}
tr{
height: 100px;
width: 100px
}
td {
border: 5px solid white;
padding: 10px;
width: 100px;
height: 100px;
text-align: center;
vertical-align: middle;
font-size: 24px;
}
td:hover{
background: rgba(255, 255, 255, .3);
cursor: pointer;
}
table tr:first-child td {
border-top: 0;
}
table tr td:first-child {
border-left: 0;
}
table tr:last-child td {
border-bottom: 0;
}
table tr td:last-child {
border-right: 0;
}
button{
margin-top: 48px;
padding: 16px 32px;
border-radius: 5px;
border: none;
background: rgb(203, 200, 203);
color: rgb(51, 50, 51);
}
button:hover{
opacity: .8;
cursor: pointer;
}