-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (113 loc) · 2.27 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
114
115
116
117
118
119
120
121
122
123
124
body{
display: flex;
min-height: 97vh;
min-width: fit-content;
flex-direction: column;
justify-content: space-between;
font-family: "Kode Mono", monospace;
}
.title{
text-align: center;
font-size: 50px;
background-color: 9195F6;
}
footer{
display: flex;
justify-content: center;
align-items: center;
background-color: FB88B4;
height: 51px;
font-weight: bold;
gap: 20px;
}
.container{
display: flex;
justify-content: center;
}
.menu{
min-width: fit-content;
background-color: F9F07A;
padding: 20px;
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 20px;
margin-right: 50px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.menu button{
font-size: 20px;
font-family: "Kode Mono", monospace;
border-style: none;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
position: relative;
background-color: #04AA6D;
border: none;
font-size: 20px;
padding: 5px;
color: #FFFFFF;
text-align: center;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
text-decoration: none;
overflow: hidden;
cursor: pointer;
}
.menu button:after {
content: "";
background: #90EE90;
display: block;
position: absolute;
padding-top: 300%;
padding-left: 350%;
margin-left: -20px!important;
margin-top: -120%;
opacity: 0;
transition: all 0.8s
}
.menu button:active:after {
padding: 0;
margin: 0;
opacity: 1;
transition: 0s
}
#gridsize{
width: 100px;
height: 90%;
font-size: 20px;
margin-bottom: 20px;
}
.gridsize{
width: 200px;
margin-left: 10px;
}
.toggleGrid{
border: 0.1px solid black;
}
input[type="color"] {
padding: 0;
border: none;
cursor: pointer;
margin: 0;
outline: none;
/* Set the background color to the value of the input */
background-color: var(--color);
}
.colorPalette{
display: flex;
justify-content: space-between;
align-items: center;
}
footer>a>img{
height: 30px;
width: 30px;
}
footer>a>img:hover{
height: 40px;
width: 40px;
transition: all 0.7s
}
.pressed {
box-shadow: 0 3px 4px 0 #DBEDF3;
opacity: 0.6;
}