-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (67 loc) · 1.19 KB
/
style.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
*{
margin: 0;
padding: 0%;
background-color: #fff2ff;
}
header{
height: 80px;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(to right, #FF4136, #0074D9, #2ECC40);
}
#mainHomeSection{
display: flex;
flex-direction: row;
height: 630px;
}
#controls{
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #c593c6;
margin-right: 80px;
}
p{
background-color: #c593c6;
}
#controlButtonSection{
background-color: #c593c6;
}
#controls > button{
width: 160px;
height: 50px;
margin: 10px;
}
#controls > p{
font-size: 30px;
margin: 10px;
margin-bottom: 40px;
}
#resetButton{
background-color: rgb(113, 189, 255);
}
#eraserButton{
background-color: aliceblue;
}
#blackButton{
background-color: black;
color: rgb(255, 255, 255);
}
#rgbButton{
font-weight: 700;
color: rgb(0, 0, 0);
background: linear-gradient(to bottom right, #76f433, #ed775c, #7158de);
}
.control-buttons{
width: 160px;
height: 30px;
margin: 20px;
background-color: rgb(255, 24, 228);
}
#gridContainer{
margin-top: 20px;
}