-
Notifications
You must be signed in to change notification settings - Fork 2
/
landing.css
98 lines (76 loc) · 1.62 KB
/
landing.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
/* CSS files add styling rules to your content */
body {
background: #FFFAF0;
}
.title {
position: absolute;
width: 1085px;
height: 143px;
left: calc(50% - 1085px/2 - 0.5px);
top: calc(50% - 143px/2 - 341.5px);
}
.tape {
position: absolute;
width: 584px;
height: 406px;
left: calc(50% - 584px/2);
top: calc(50% - 406px/2 + 28px);
z-index: 2;
}
.radiofront {
position: absolute;
width: 1666px;
height: 181px;
left: calc(50% - 1666px/2);
top: calc(50% - 181px/2 + 369.5px);
z-index: 4;
}
.radioback {
position: absolute;
width: 1666px;
height: 537px;
left: calc(50% - 1666px/2 - 1px);
top: calc(50% - 537px/2 + 56px);
z-index: 1;
}
.orangeextend {
position: absolute;
width: 1666px;
height: 100%;
left: calc(50% - 1666px/2);
top: calc(50% - 136px/2 + 392px);
z-index: 3;
background: #F26738;
}
input[type="range"] {
transform: rotate(270deg);
}
.slider {
-webkit-appearance: none;
outline: none;
position: absolute;
width: 1100px;
height: 1px;
top: calc(50% + 250px);
left: calc(50% - 552px);
background-color: transparent;
z-index: 2;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 584px;
height: 406px;
background: url(https://cdn.glitch.com/1ebcc3a1-e400-4a80-ad74-97444f4c0216%2FCassette.gif?v=1591399606563);
background-size: cover;
transform: rotate(90deg);
cursor: pointer;
z-index: 2;
}
.slider::-moz-range-thumb {
width: 100px;
height: 100px;
background: url(https://cdn.glitch.com/1ebcc3a1-e400-4a80-ad74-97444f4c0216%2FCassette.gif?v=1591399606563);
cursor: pointer;
z-index: 2;
}