-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (115 loc) · 2.13 KB
/
Copy pathstyle.css
File metadata and controls
128 lines (115 loc) · 2.13 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
margin: 0;
padding: 0;
/* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
background-color: rgb(245, 241, 224);
}
.heading{
display: flex;
width: 100%;
padding: 40px 0 40px 0;
justify-content: center;
align-items: center;
font-family: "Press Start 2P";
}
#main {
display: flex;
padding: 0;
flex-direction: row;
width: 100%;
overflow: hidden;
column-gap: 4em;
padding-top: 40px;
padding-bottom: 40px;
}
#main #functions {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 40px;
flex-shrink: 0;
width: 30vw;
}
#container {
display: grid;
width: 600px;
height: 600px;
margin: 0;
padding: 0;
box-shadow: 0px 0px 10px 0px black;
cursor: pointer;
}
.slider {
width: 10rem;
height: 10px;
appearance: none;
border-radius: 5px;
cursor: pointer;
}
#slider{
display: flex;
flex-direction: column;
text-align: center;
gap: 10px;
}
.sliderValue{
font-family: "Press Start 2P";
}
.coloringBtn,
.eraserBtn,.clearBtn,.selectColor{
font-size: 19px;
height: 2em;
width: 6em;
background-color: rgba(15, 15, 15, 0.788);
border: 2px rgb(0, 0, 0);
border-radius: 5px;
color: white
}
.coloringBtn:hover,
.eraserBtn:hover,.clearBtn:hover,.selectColor:hover {
transform: translateY(-4px);
/* background-color: rgb(0, 0, 0); */
font-weight: 600;
transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.active{
background-color: rgb(0, 0, 0);
}
#colorPicker{
opacity: 0;
position: absolute;
pointer-events: none;
height: 50px;
}
.color {
display: inline-block;
height: 50px;
width: 50px;
border-radius: 25px;
border: 1px solid grey;
}
.colorSetting{
display: flex;
flex-direction: column;
gap: 40px;
justify-content: center;
align-items: center;
}
.footer{
display: flex;
width: 100%;
font-size: 10px;
font-family: "Press Start 2P";
height: 50px;
justify-content: center;
align-items: center;
background-color: rgb(255, 255, 255);
gap: 40px;
}
a {
text-decoration: none;
}
.fab{
color: black;
}