-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (76 loc) · 1.44 KB
/
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
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
body, html {
margin: 0px;
background-color: #212032;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: white;
height: 100%;
}
.title {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
font-size: 5em;
}
.fscontainer {
width:100%;height:100%;
display: flex;
align-items: center;
justify-content: center;
}
.fsimage {
display: block;
width: 50%;
height: auto;
}
.info {
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
top: 15%;
left: 5%;
font-size: 2em;
padding: 2%;
}
.slidecontainer {
position: absolute;
width: 50%;
margin-left: 25%;
bottom: 15%;
}
.slider {
width: 100%;
border-radius: 5px;
background: #d3d3d3;
color: white;
}
.tvaluetext {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: medium;
color: #f07508;
}
input[type="range"] {
-webkit-appearance: none;
margin-right: 15px;
height: 3px;
background: lightgray;
border-radius: 5px;
background-image: linear-gradient(#f07508, #f07508);
background-size: 0% 100%;
background-repeat: no-repeat;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
height: 20px;
width: 20px;
border-radius: 50%;
background: #f07508;
cursor: ew-resize;
box-shadow: 0 0 2px 0 #555;
}
input[type="range"]::-webkit-slider-runnable-track {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}