-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
91 lines (78 loc) · 1.13 KB
/
main.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
html {
box-sizing: border-box;
width: 100%;
height: 100%;
}
*,
*:before,
*:after {
box-sizing: inherit;
padding: 0;
margin: 0;
}
body {
font-family: sans-serif;
height: 100%;
margin: 0;
background: #261c33;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center
}
h2 {
color: #8d81f3;
text-align: center;
font-size: 40px;
margin: 20px;
}
main {
display: flex;
justify-content: space-around;
align-items: center;
height: 420px;
max-width: 768px;
margin: 0 auto;
font-family: monospace, sans-serif;
font-size: 22px;
}
main label {
display: block;
}
main input[type="range"] {
display: block;
margin-bottom: 10px;
width: 200px;
}
section.settings {
width: 50%;
z-index: 2;
}
.box-container {
padding: 50px;
border: 1px solid #8d81f3;
}
.box {
width: 150px;
height: 150px;
background: #8d81f3;
}
button {
background-color: #8d81f3;
color: #fff;
display: inline-block;
font-size: 20px;
padding: 10px;
outline: none;
border: none;
margin-right: 10px;
}
label {
color: #fff;
}
[v-cloak] {
display: none;
}
button {
cursor: pointer;
}