-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (58 loc) · 1.1 KB
/
styles.css
File metadata and controls
67 lines (58 loc) · 1.1 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
gap: 1em;
}
button {
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
background-color: transparent;
border-radius: 5px;
border: 2px solid rgb(226, 110, 226);
color: chartreuse;
font-weight: bolder;
}
button:hover{
background-color: cornflowerblue;
}
.navbar-title {
padding: 20px 0;
text-align: center;
}
#navbar{
display: flex;
justify-content: center;
align-items: center;
}
#canvas{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
gap: 1em;
}
@media (max-width: 768px) {
#canvas{
flex-wrap: wrap;
max-width: 400px;
text-align: center;
}
}
@media (max-width: 500px) {
#canvas{
flex-wrap: wrap;
max-width: 250px;
text-align: center;
}
}