-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (57 loc) · 927 Bytes
/
Copy pathstyle.css
File metadata and controls
66 lines (57 loc) · 927 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
55
56
57
58
59
60
61
62
63
64
65
66
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow: hidden;
background: black;
}
canvas {
position: absolute;
top: 175px;
left: 0;
right: 0;
bottom: 0;
}
main {
display: flex;
flex-direction: column;
gap: 20px;
margin: 0 auto;
max-width: 600px;
padding: 0 20px;
}
h1 {
color: white;
text-align: center;
margin: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}
input {
padding: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
background: #333;
color: white;
}
button {
padding: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
background: #333;
color: white;
cursor: pointer;
}
@media screen and (min-width: 400px) {
main {
flex-direction: row;
justify-content: center;
}
canvas {
top: 115px;
}
}