-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (79 loc) · 1.63 KB
/
style.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
/*Seccion "CONTADOR JS" con Fondo/Background de un Video de CABA*/
.section-video {
position: relative;
width: 100%;
padding: 130px 0;
background-size: cover;
background-attachment: fixed;
background-position: center;
}
video{
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
}
.full-image {
position: absolute;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.full-image .to-bottom {
object-position: bottom;
}
.grayscale {
filter: grayscale(100%);
}
.container-section-number {
position: relative;
color: white;
text-shadow: 0 0 5px black;
}
.pre-title {
width: fit-content;
margin: auto;
padding-bottom: 15px;
display: block;
font-size: 0.9rem;
font-weight: 700;
text-transform: uppercase;
color: var(--bs-orange);
}
.titulo-numeros {
font-size: 2rem;
padding: 15px;
}
.resaltador{
background-color: var(--bs-orange);
}
.counter-bubble {
position: relative;
width: 110px;
display: inline-block;
text-align: center;
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
box-sizing: border-box;
height: 70px;
vertical-align: middle;
margin: 15px;
}
.number {
font-size: 3rem;
position: absolute;
top: 25px;
left: 0;
width: 100%;
text-align: center;
line-height: 40px;
font-weight: 700;
color: var(--bs-orange);
padding-bottom: 20px;
}
/* FIN Seccion de CSS del "CONTADOR" JS */