-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
83 lines (68 loc) · 1.47 KB
/
index.css
File metadata and controls
83 lines (68 loc) · 1.47 KB
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
@font-face {
font-family: 'RalewayExtraLight';
src: url('public/fonts/Raleway-ExtraLight.ttf') format('ttf'),
url('public/fonts/Raleway-ExtraLight.ttf') format('truetype');
}
html {
height: fill-available;
height: -webkit-fill-available;
}
body {
font-family: 'RalewayExtraLight', 'Helvetica Neue', 'Arial', sans-serif;
text-align: center;
margin: 20px;
display: flex;
flex-direction: column;
justify-content: center;
min-height: 100vh;
min-height: fill-available;
min-height: -webkit-fill-available;
}
.link {
margin-bottom: 20px;
}
.row {
display: flex;
justify-content: center;
}
.row:nth-of-type(1) {
margin-top: 20px;
}
.cell {
width: 100px;
height: 100px;
border: 1px solid black;
margin-top: -1px;
margin-left: -1px;
display: flex;
justify-content: center;
align-items: center;
font-size: 4rem;
font-weight: 600;
}
.cell[data-row="0"][data-col="0"] {
border-top-left-radius: 25px;
}
.cell[data-row="2"][data-col="0"] {
border-bottom-left-radius: 25px;
}
.cell[data-row="0"][data-col="2"] {
border-top-right-radius: 25px;
}
.cell[data-row="2"][data-col="2"] {
border-bottom-right-radius: 25px;
}
.cell:hover, .cell:active {
background-color: rgb(221, 221, 221);
}
.hide {
display: none;
}
#description {
max-width: 500px;
border: 1px solid black;
font-weight: 600;
border-radius: 25px;
margin: 20px auto 0;
padding: 0 20px;
}