forked from devoffarg/DevOff-Desafio-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
111 lines (100 loc) · 1.44 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
.wrapper {
display: flex;
width: 100%;
justify-content: center;
flex-direction: column;
align-items: center;
}
.paint-wrapper {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
}
.canvas {
border: 1px solid black;
width: 560px;
height: 360px;
}
.colors-wrapper {
flex-direction: column;
display: flex;
justify-content: center;
}
.line-wrapper {
flex-direction: column;
display: flex;
justify-content: space-evenly;
height: 200px;
align-items: center;
}
.line-item {
cursor: pointer;
background-color: black;
height: 30px;
width: 30px;
border-radius: 50%;
}
.color-item {
box-sizing: border-box;
height: 30px;
width: 30px;
cursor: pointer;
font-size: 22px;
text-align: center;
}
.blue {
background-color: blue;
}
.red {
background-color: red;
}
.pink {
background-color: pink;
}
.green {
background-color: green;
}
.yellow {
background-color: yellow;
}
.purple {
background-color: purple;
}
.black {
background-color: black;
border: 5px solid darkgrey;
}
.brown {
background-color: brown;
}
.multicolor {
background-color: black;
color: white;
}
.big-medium {
height: 23px;
width: 23px;
}
.medium {
height: 16px;
width: 16px;
}
.small {
height: 10px;
width: 10px;
}
.very-small {
height: 5px;
width: 5px;
background-color: darkgrey;
}
.save {
width: 200px;
height: 50px;
align-items: center;
justify-content: center;
display: flex;
cursor: pointer;
background-color: burlywood;
}