-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (42 loc) · 867 Bytes
/
Copy pathstyles.css
File metadata and controls
48 lines (42 loc) · 867 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
.grid-container {
display: grid;
grid-template-columns: auto auto auto auto;
grid-gap: 10px;
background-color: black;
grid-template-columns: repeat(2, 2fr);
}
.grid-container > div {
background-color: black;
text-align: center;
padding: 20px 0;
font-size: 24px;
font-family: Arial, Helvetica, sans-serif
}
.pause, .bttns {
background-color: #808080;
border: 5px solid white;
color: white;
padding: 25px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
}
@media screen and (min-width: 414px) and (max-width: 736px){
.div-only-mobile{
display:none;
}
}
html, body {
height: 100%;
margin: 0;
}
body {
background: black;
display: flex;
align-items: center;
justify-content: center;
}
canvas {
border: 1px solid white;
}