-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
129 lines (104 loc) · 1.81 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
:root {
--pink: #DA4868;
--orange: #E95828;
--yellow: #F1C042;
--turquoise: #80F4E0;
--blue: #0D3188;
--purple: #A67BEF;
--gray: #9C9C9C;
--white: #FFFFFF;
--line-one: 5px;
--line-two: 10px;
--line-three: 15px;
--line-four: 20px;
}
body {
padding: 0;
margin: 0;
cursor: pointer;
}
header {
display: flex;
align-items: center;
position: absolute;
right: 2%;
top: 2%;
height: 50px;
padding: 0 20px;
}
footer {
display: grid;
grid-template-columns:1.8fr 1.7fr 120px;
position: absolute;
right: 2%;
left: 2%;
bottom: 2%;
height: 50px;
z-index: 99999;
border: 1px solid var(--gray);
background-color: var(--white);
}
button {
border: none;
}
#line-one {
height: var(--line-one)
}
#line-two {
height: var(--line-two)
}
#line-three {
height: var(--line-three)
}
#line-four {
height: var(--line-four)
}
#color-one {
background-color: var(--pink);
}
#color-two {
background-color: var(--orange);
}
#color-three {
background-color: var(--yellow);
}
#color-four {
background-color: var(--turquoise);
}
#color-five {
background-color: var(--blue);
}
#color-six {
background-color: var(--purple);
}
.palette {
display: flex;
flex-direction: row;
align-items: center;
border-right: 1px solid var(--gray);
padding-left: 10px;
}
#clear-canvas-button {
display: flex;
align-items: center;
justify-content: center;
border-left: 1px solid var(--gray);
}
p {
padding-right: 10px;
}
.line {
display: flex;
flex-direction: row;
align-items: center;
padding-left: 20px;
}
.line > button {
width: 105px;
background-color: #000000;
margin-right: 10px;
}
.palette > button {
width: 80px;
height: 20px;
}