-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (77 loc) · 1.59 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
@import "reset.css";
h4 {
display: block;
font-size: 1em;
margin-block-start: 1.67em;
margin-block-end: 1.67em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
}
h5 {
display: block;
font-size: 0.83em;
margin-block-start: 1.67em;
margin-block-end: 1.67em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
}
body {
background-color: #00d4cd;
font-family: "Quicksand", sans-serif;
font-weight: 700;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 10px;
line-height: 1;
}
.canvas {
width: 500px;
height: 500px;
background-color: white;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.controls {
margin-top: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
.controls .controls_range {
margin-bottom: 10px;
}
.controls .controls_btns {
margin-bottom: 20px;
}
.controls_btns button {
all: unset;
cursor: pointer;
background-color: white;
padding: 5px 0px;
width: 80px;
text-align: center;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
border: 2px solid rgba(199, 35, 144, 0.7);
color: rgba(199, 35, 144, 0.7);
text-transform: uppercase;
font-weight: 700;
font-size: 12px;
}
.controls_btns button:active {
transform: scale(0.97);
}
.controls .controls_colors {
display: flex;
}
.controls_colors .controls_color {
width: 40px;
height: 40px;
border-radius: 50%;
margin: 5px;
box-shadow: 6px 6px 10px 1px #d18f99;
cursor: pointer;
}