-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
60 lines (54 loc) · 812 Bytes
/
main.css
File metadata and controls
60 lines (54 loc) · 812 Bytes
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
body {
margin: 0;
background-color: #000;
color: #fff;
font-family: Monospace;
font-size: 13px;
line-height: 24px;
overscroll-behavior: none;
}
#container{
height: 100vh;
}
#height_slider{
width: 80%;
position: relative;
margin: 0;
}
#label{
color: black;
position: relative;
padding: 10px;
}
#value{
color: black;
position: relative;
padding: 10px;
}
.control{
display: flex;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
position: absolute;
width: 30%;
margin: auto;
}
#download_image{
background-color:black;
color: white;
border: goldenrod;
border-radius: 5px;
text-decoration: none;
top: 50px;
left: 100px;
position: absolute;
padding: 20px;
padding-top: 5px;
padding-bottom: 5px;
}
#download_image:hover{
color: orange;
border: orange;
cursor: pointer;
}