-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·113 lines (88 loc) · 1.46 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
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
body {
height: 100vh;
width: 100vw;
background-color: hsla(0,0%,0%,0.8);
margin: 25px;
}
canvas {
background: rgb(79, 79, 90);
border: solid gray .7px;
border-radius: 5px;
}
canvas:hover, canvas:focus {
cursor: pointer;
}
/* Color Palette Container */
.colors-container {
display: inline-block;
background-color: rgb(79, 79, 90);
border: solid gray .7px;
border-radius: 5px;
margin: 25px;
}
/* Color Swatches Look Like This */
.colors-container button {
width: 65px;
border: solid black 1px;
border-radius: 5px;
padding: 10px;
margin: 5px;
}
.colors-container button:hover {
border: white 1px solid;
}
button:hover {
cursor: pointer;
}
#white {
background-color: white;
color: white;
}
#black {
background-color: black;
color: black;
}
#red {
background-color: #ff0c2c;
color: #ff0c2c;
}
#orange {
background-color: #F58e16;
color: #F58e16;
}
#yellow {
background-color: #ffff00;
color: #ffff00;
}
#green {
background-color: #00ff00;
color: #00ff00;
}
#blue {
background-color: #0c43ff;
color: #0c43ff;
}
#purple {
background-color: #8000ff;
color: #8000ff;
}
#pink {
background-color: #ff00ff;
color: #ff00ff;
}
/* Download & Erase Buttons */
button#download,
button#erase {
background-color: lightgray;
border: solid gray 1px;
border-radius: 5px;
margin: 25px;
}
button#download:hover,
button#erase:hover {
background-color: white;
border: solid white .7px;
}
html {
overflow: hidden;
}