-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
112 lines (102 loc) · 1.87 KB
/
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import "reset.css";
body {
display: flex;
gap: 17px;
justify-content: center;
align-items: center;
background-color: gainsboro;
padding: 20px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
user-select: none;
}
canvas {
width: 900px;
height: 900px;
background-color: white;
border-radius: 10px;
}
.btns {
display: flex;
flex-direction: column;
gap: 20px;
}
.color-options {
display: flex;
flex-direction: column;
gap: 20px;
}
.color-option {
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
border: 5px solid white;
transition: transform ease-in-out 0.1s;
}
.color-option:hover {
transform: scale(1.1);
}
input#color {
background-color: white;
}
button,
label {
all: unset;
padding: 17px 0px;
text-align: center;
background-color: #ff8ad4;
color: black;
font-weight: 500;
font-size: large;
cursor: pointer;
border-radius: 10px;
border: 1px solid #000000;
transition: opacity linear 0.1s;
}
select {
display: inline-block;
width: 100%;
padding: 10px 0px;
font-size: large;
}
.btns > div > div {
display: block;
font-size: large;
padding: 7px 0px;
text-align: center;
background-color: #c6c6c6;
color: black;
font-weight: 500;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
span {
font-size: large;
padding: 10px 0px;
text-align: center;
background-color: #c6c6c6;
color: black;
font-weight: 500;
border-radius: 10px;
}
button:hover {
opacity: 0.85;
}
input#file {
display: none;
}
input#text {
all: unset;
padding: 17px 0px;
text-align: center;
background-color: white;
border: 1px solid #000000;
font-weight: 500;
font-size: large;
border-radius: 10px;
}
input#line-width {
accent-color: #ff8ad4;
background-color: white;
}