This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (94 loc) · 1.34 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#header-content {
display: flex;
justify-content: center;
}
#ui {
display: flex;
justify-content: center;
padding: 1rem;
gap: 1rem;
/* background: grey; */
}
#left,
#right {
width: 26.5rem;
height: 26.5rem;
}
#left {
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
text-align: center;
/* background: blue; */
}
#canvas {
display: flex;
order: 2;
flex-wrap: wrap;
width: 25rem;
height: 25rem;
background: black;
padding: 1.5rem;
}
#right {
display: flex;
order: 3;
/* background: red; */
justify-content: space-evenly;
}
#buttons {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
footer {
color: black;
font-size: 14px;
display: flex;
justify-content: center;
}
.footer-content {
display: flex;
align-items: center;
}
#currentYear {
font-weight: bold;
margin-left: 5px;
margin-right: 5px;
}
img {
height: 20px;
width: auto;
}
@media (max-width: 700px) {
#ui {
height: auto;
flex-wrap: wrap;
}
#left,
#center,
#right {
position: relative;
height: auto;
}
#left {
order: 2;
}
#center {
order: 1;
}
#right {
order: 3;
}
#canvas {
width: 20rem;
height: 20rem;
padding: 1rem;
}
#buttons {
gap: 1rem;
}
}