-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (46 loc) · 874 Bytes
/
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
* {
padding: 0;
margin: 0;
font-family: "Montserrat", sans-serif;
scroll-behavior: smooth;
}
body {
background-color: black;
color: white;
}
h1 {
font-size: 3.5rem;
display: flex;
text-transform: uppercase;
justify-content: center;
padding: 1rem;
}
table {
border-collapse: collapse;
width: 40%;
margin-left:auto;
margin-right:auto;
resize: both;
}
th, td {
border: 2px #666 solid;
font-size: 24px;
}
td {
height: 20%;
position: relative;
}
td .content {
aspect-ratio: 1 / 1 ;
table-layout: fixed;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-size: 1rem;
text-shadow: black 1px 0 5px;
}
.active {
background-image: url("x.png");
background-size: cover;
}