-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 821 Bytes
/
style.css
File metadata and controls
49 lines (42 loc) · 821 Bytes
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
#canvas {
display: block;
width: 1080px;
height: 720px;
border-radius: 50px;
border: 5px solid #000000;
background-color: #ffffff;
margin: 50px auto 50px auto;
cursor: crosshair;
}
.toolbar {
display: flex;
justify-content: center;
}
.toolbar__item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0 50px;
}
.txt {
margin-top: 10px;
font-weight: 700;
font-size: 18px;
}
#lineColor {
width: 50px;
height: 50px;
}
#clearBtn {
width: 100px;
height: 50px;
border-radius: 25px;
border: 2px solid #000000;
background-color: #ffffff;
}
#clearBtn:hover {
cursor: pointer;
background-color: #000000;
color: #ffffff;
}