-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (104 loc) · 1.84 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 500;
font-display: block;
/*src: url("../fonts/Inter.var.woff2") format("woff2");*/
}
:root {
--bg-color: #ddb74d;
--bg-color-dark: #e28800;
--bg-color-darker: #d06000;
}
body {
/*background-color: var(--bg-color);*/
background-image: url("lava.png");
image-rendering: pixelated;
font-family: Inter, Asap, Arial, sans-serif;
margin: 0;
color: azure;
text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}
body::-webkit-scrollbar {
width: 0.8em;
height: 0.8em;
}
body::-webkit-scrollbar-thumb {
background-color: var(--bg-color-dark);
}
body::-webkit-scrollbar-thumb:hover {
background-color: var(--bg-color-darker);;
}
body::-webkit-scrollbar-corner {
background-color: var(--bg-color);
}
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
button {
font-family: Inter;
background-color: var(--bg-color-dark);
}
button:hover {
background-color: #ffdd48;
cursor: pointer;
}
.indented {
padding-left: 10%;
}
.bold {
font-weight: bold;
}
.clickable {
cursor: pointer;
}
.italic {
font-style: italic;
}
.main {
width: 100%;
position: absolute;
top: 70%;
}
.barra-fondo {
width: 42%;
margin: 15px auto;
height: 20px;
background-color: #525252;
border: 3px solid #2e2e2e;
position: relative;
}
.barra-target {
width: 15%;
height: 20px;
background-color: #b3b3b3;
position: absolute;
left: 0px;
}
.barra-movil {
width: 3%;
height: 5px;
background-color: lime;
position: absolute;
top: -11px;
left: 0px;
}
.tiempo {
width: 30%;
background-color: #525252;
}
.barra-tiempo {
width: 100%;
height: 20px;
background-color: #5fe36c;
}
.image-container {
margin-bottom: 45px;
display: flex;
justify-content: center;
position: relative;
align-items: center;
}
.imagen {
position: absolute;
}