-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (63 loc) · 1010 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
}
body {
font-family: "Quicksand";
height: 100vh;
background: #ffd6e2;
}
.title {
font-size: 400%;
margin-left: 4%;
color: #f1356d;
}
.main {
margin-top: 1%;
display: flex;
}
#canvas {
background: white;
border: 3px solid black;
margin-left: 4%;
}
.dashBoard {
margin-left: 2%;
}
input {
display: block;
}
.color,
.size {
font-size: 160%;
color: #f1356d;
font-weight: bold;
}
.color {
margin-top: 10px;
}
.clr {
position: relative;
left: 150px;
top: -35px;
height: 27px;
width: 90px;
margin-left: 16px;
}
.rng {
position: relative;
left: 150px;
top: -30px;
}
#save,
#reset {
height: 50px;
width: 140px;
font-size: 20px;
border-radius: 12px;
color: #f1356d;
font-weight: bold;
font-family: "Quicksand";
margin-top: 10px;
}