-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathportada-web.css
More file actions
114 lines (100 loc) · 1.73 KB
/
portada-web.css
File metadata and controls
114 lines (100 loc) · 1.73 KB
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
111
112
113
114
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
--bg-color: #ff9464;
--text-color: #333;
--dark-color: #f62;
}
body,
div,
ul,
li,
a,
h1,
h2,
h3,
h4.p {
margin: 0;
padding: 0;
}
body {
background-image: url("img/fondo.gif");
position: center;
height: 200dvh;
background-size: cover;
}
header {
display: flex;
justify-content: center;
mix-blend-mode: difference;
}
.text-container {
min-height: 100vh;
position: fixed;
top: 0;
display: flex;
font-size: clamp(1rem, 9vw, 12rem);
color: var(--text-color);
font-weight: 600;
justify-content: space-between;
width: 100%;
align-items: center;
padding: 3vw;
mix-blend-mode: difference;
animation: aparecer-texto both;
animation-timeline: scroll();
animation-range-start: cover 20%;
}
.left-text {
color: var(--dark-color);
}
.right-text {
font-weight: 900;
}
.left-text {
filter: drop-shadow(0px 0px 1px var(--dark-color))
drop-shadow(0px 0px 9px var(--dark-color));
}
img {
filter: grayscale();
mix-blend-mode: darken;
position: fixed;
top: 0;
animation: aparecer both;
animation-timeline: scroll();
max-height: 100vh;
mix-blend-mode: darken;
}
@keyframes aparecer {
0% {
opacity: 0;
filter: grayscale();
translate: 0 -20%;
scale: 0.7;
}
100% {
opacity: 1;
filter: grayscale();
translate: 0 0;
scale: 1;
}
}
@keyframes aparecer-texto {
0% {
opacity: 0;
translate: 0 20%;
scale: 2;
}
100% {
opacity: 1;
translate: 0 0;
scale: 1;
}
}
@media screen and (max-width: 900px) {
.text-container {
justify-content: space-evenly;
}
}