-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (47 loc) · 837 Bytes
/
style.css
File metadata and controls
54 lines (47 loc) · 837 Bytes
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
body {
display: grid;
grid-template-columns: 1fr 3fr 1fr;
grid-template-rows: 1fr 5fr 1fr;
width: 98vw;
height: 98vh;
background: black;
color:white;
}
.header{
grid-column: 1 / 4;
grid-row: 1/2;
}
.content{
grid-column: 2 / 3;
grid-row: 2/3;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(10,1fr);
}
.footer {
grid-column: 1 / 4;
grid-row: 3/4;
}
.row {
display: flex;
height: 100%;
width:100%;
}
.row .tile {
width: 9.0908%;
border:black solid 1px;
font-family: 'Encode Sans Condensed', sans-serif;
display:flex;
justify-content: center;
align-items: center;
font-size: 1.5em;
font-weight: 200;
height: 100%;
text-rendering: optimizeLegibility;
}
.tile.active {
color: red;
text-shadow: 0 0 3px red;
font-weight: 500;
font-size: 1.8em;
}