-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
77 lines (72 loc) · 1.51 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
body {
height: 100vh;
width: 100vw;
background-color: black;
margin: 0rem;
overflow: hidden;
}
#image-track > div {
height: 60vmin;
}
#image-track > div > .image {
width: 40vmin;
height: 56vmin;
object-fit: cover;
object-position: center center;
user-select: none;
transform: translateX(-50%);
transition: width 0.4s ease-in-out;
}
#image-track {
display: flex;
gap: 4vmin;
position: absolute;
left: 50%; top: 50%; transform: translate(0%, -50%);
}
.info-box {
opacity: 100;
position: absolute;
background-color: white;
padding: 10px;
border: 1px solid black;
border-radius: 5px;
pointer-events: none;
display: none;
z-index: 10;
font-size: 100px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
height: 14vmin;
width: 18vmin;
}
.progress-bar{
position: fixed;
left: 0;
bottom: 0;
background-color: white;
padding: 10px;
z-index: 10;
height: 0.5vmin;
width: 0px;
}
.title{
left: 50%;
color: white;
font-size: 3.4vmin;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
height: 14vmin;
width: 40vmin;
transform: translate(-50%,50%);
opacity: 100;
}
.date{
left: 50%;
color: white;
font-size: 1.8vmin;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
height: 14vmin;
width: 40vmin;
transform: translate(-50%, 0);
}