-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (44 loc) · 840 Bytes
/
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
body {
text-align: center;
font-family: 'Orbitron', sans-serif;
}
.button {
background-color: rgb(42, 42, 42);
border: none;
color: #ffc000;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
font-size: 24px;
}
.button:hover {
background-color: rgb(95, 95, 95);
}
.container {
display: flex;
align-items: baseline;
justify-content: flex-start;
grid-template-columns: 2fr 1fr;
border: 1px solid gray;
margin: 8px;
border-radius: 4px;
padding: 16px;
width: fit-content;
}
.color {
border: 1px, solid, black;
margin-left: 100px;
margin-right: 200px;
}
.controlpanel {
width: fit-content;
align-items: center;
justify-content: center;
border: 1px, solid, rgb(255, 0, 0);
}
.console {
border: 1px solid gray;
}