-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (62 loc) · 1.52 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
@import 'reset.css';
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: #dbe2f0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 0;
}
.canvas {
width: 700px;
height: 700px;
background-color: #fff;
border-radius: 20px;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.controls {
display: flex;
flex-direction: column;
align-items: center;
}
.controls .controls_range {
margin-bottom: 30px;
}
.controls .controls_btns {
margin-bottom: 30px;
}
.controls_btns button {
all:unset;
cursor: pointer;
padding: 5px 0px;
background-color: #fff;
width: 100px;
text-align: center;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
border-radius: 5px;
border: 2px solid rgba(0, 0, 0, 0.2);
color: rgba(0, 0, 0, 0.8);
font-weight: 700;
font-size: 12px;
text-transform: uppercase;
}
.controls_btns button:active {
transform: scale(0.98);
}
.controls .controls_colors {
display: flex;
}
.controls {
margin-top: 80px;
}
.controls_colors .controls_color {
width: 50px;
height: 50px;
border-radius: 25px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}