-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (71 loc) · 1.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
font-family: "Roboto", sans-serif;
margin: 0px;
display: flex;
background-color: bisque;
align-items: center;
justify-content: center;
}
.side-panel {
display: flex;
flex-flow: column nowrap;
margin: 8px;
align-items: center;
justify-content: space-between;
background-color: bisque;
border: solid black;
border-radius: 20px;
width: 550px;
}
.title {
background-color: aquamarine;
display: flex;
flex-direction: column;
align-items: center;
gap: 0px;
border-radius: 20px;
width: 500px;
height: 150px;
border: solid;
border-color: black;
margin: 8px;
}
.button-container {
display: flex;
flex-flow: column nowrap;
justify-content: space-around;
}
button {
border-radius: 20px;
height: 100px;
width: 200px;
padding: 20px;
margin: 10px;
border-style: solid;
border-color: black;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
#normal {
background-color: black;
color: white;
}
#erase {
background-color: pink;
}
#rainbow {
background: linear-gradient(170deg, red,orange,yellow,green,blue,indigo,violet);
color: white;
}
.container {
display: flex;
flex-wrap: wrap;
padding: 0px;
width: 600px;
height: 600px;
margin: 8px;
background-color: white;
border: solid black;
}