-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 1.03 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
.header {
text-align: center;
font-size: large;
font-weight: bold;
}
body {
background-color: rgb(255, 132, 132);
height: 100vh;
margin: 0px;
}
.slider-container {
display: flex;
}
.all-slider{
display: flex;
flex-direction: column;
flex: 1;
}
#change-value {
height: 100%;
}
.content {
display: flex;
gap: 40px;
flex-direction: column;
flex: 1;
justify-content: center;
align-items: center;
}
.controls {
border: 2px solid black;
padding: 10px;
border-radius: 10px;
width: 70%;
justify-content: center;
align-items: center;
}
.controls button {
height: 30px;
width: 80px;
}
.sketch {
border: 5px solid black;
background-color: white;
display: grid;
position: absolute;
width: 100%;
height: 100%;
}
.wrapper {
position: relative;
width: 50%;
}
.wrapper:after {
content: "";
display: block;
padding-bottom: 100%;
}
.sketch div {
border-bottom: 1px solid black;
border-right: 1px solid black;
}