-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (93 loc) · 1.71 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
*{
margin: 0%;
padding: 0%;
}
h3,p{
margin: 0rem;
color: #00DFA2;
font-family: 'Nunito', sans-serif;
}
.how{
padding: 0.7rem;
}
.how h3{
margin-bottom: 0.5rem;
}
.fullbody{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
border: 2px solid black;
background-color: rgb(33, 96, 179);
}
.mainCanvas{
z-index: 0;
display: flex;
flex-wrap: wrap;
border: 6px solid black;
background-color: rgb(255, 255, 255);
width: 40rem;
height: 40rem;
}
#mainCanvas .customBoxes.RED{
background-color: rgb(255, 7, 7) !important;
}
.settings{
position: fixed;
top: 15px;
left: 15px;
display: flex;
flex-direction: column;
background-color: rgb(7, 32, 77);
margin: 1rem;
padding: 1.3rem;
gap: 0.6rem;
border-radius: 40px;
}
.options{
display: flex;
justify-content: space-around;
align-items: center;
background-color: rgb(4, 15, 36);
border-radius: 16px;
padding: 0.6rem;
gap: 0.5rem;
width: 17rem;
}
.option{
border-radius: 40px;
padding: 0.5rem;
background-color: #00DFA2;
}
.option:hover{
background-color: rgb(13, 110, 78);
}
.color{
margin: 0rem;
display: flex;
gap: 5px;
}
#colorOptions{
flex-direction: column;
margin-top: 0.4rem;
display: none;
}
.paintBrushMenu{
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px;
background-color: rgb(4, 15, 36);
border-radius: 16px;
}
.size{
border-radius: 13px;
background-color: #00DFA2;
padding: 0.6rem;
}
.size:hover{
background-color:rgb(13, 110, 78);
}