-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (62 loc) · 1.17 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
/* BODY */
body{
margin: 0;
padding: 0;
font-family: sans-serif;
}
/* HEADER CONTAINER */
.header{
text-align: center;
height: 100px;
}
/* SKETCH CONTAINER */
.sketch-container{
display: flex;
justify-content: center;
align-items: center;
}
.sketch-board{
display: grid;
width: 500px;
height: 500px;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
/* SKETCH OPTIONS */
.sketch-btn-group{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
position: absolute;
top: 260px;
left: 20px;
border: 2px solid black;
border-radius: 24px;
padding: 8px;
}
#color-picker{
width: 24px;
height: 24px;
cursor: pointer;
border: none;
padding: 0;
background-color: transparent;
}
#pen,
#eraser,
#clear{
border: 1px solid white;
cursor: pointer;
background-color: transparent;
}
.size-controller{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 6px;
position: absolute;
bottom: 40px;
left: 682px;
}