-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (48 loc) · 859 Bytes
/
styles.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
/* Grid Setup 16x16 */
.grid {
width: 650px;
height: 650px;
outline-style: solid;
}
.row {
display: flex;
}
.square {
outline-style: solid;
outline-width: thin;
opacity: 1;
}
.remove-grid-lines {
outline-style: none;
}
/* Page Layout */
.container {
display: flex;
align-items: center;
justify-content: center;
gap: 100px;
margin-top: 50px;
}
.side-content {
display: flex;
flex-direction: column;
align-items: center;
font-size: 24px;
}
/* Button and slider styling */
button {
width: 150px;
height: 40px;
border-radius: 8px;
margin-top: 8px;
}
button:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
background-color: darkgray;
}
.slider-container, h1 {
text-align: center;
}
button, input {
cursor: pointer;
}