-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevento.html
More file actions
157 lines (131 loc) · 3.87 KB
/
evento.html
File metadata and controls
157 lines (131 loc) · 3.87 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<link rel="stylesheet" href="">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Envento A Coruña</title>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: table;
background-color: #5c0e59;
}
.container {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.text {
font-family: impact;
color: #426DFB;
font-size: 9vw;
line-height: 15vw;
text-shadow: 0 0 3vw #2356FF;
animation: text 1s ease infinite;
-moz-animation: text 1s ease infinite;
-webkit-animation: text 1s ease infinite;
letter-spacing: 2px;
}
@keyframes text {
0%,
100% {
text-shadow: 0 0 1vw #ef10ff, 0 0 3vw #ff10d7, 0 0 10vw #ea64ff, 0 0 10vw #f14ff6, 0 0 .4vw #d64df2, .5vw .5vw .1vw #e535ce;
color: #fe28fe;
}
50% {
text-shadow: 0 0 .5vw #80087c, 0 0 1.5vw #800878, 0 0 5vw #800880, 0 0 5vw #800880, 0 0 .2vw #800880, .5vw .5vw .1vw #3e0a40;
color: #b020a0;
}
}
.subtext {
font-family: tahoma;
color: #FB4264;
font-size: 5vw;
line-height: 5vw;
text-shadow: 0 0 3vw #F40A35;
animation: subtext 1s ease infinite;
-moz-animation: subtext 1s ease infinite;
-webkit-animation: subtext 1s ease infinite;
transform: rotate(-20deg);
position: relative;
top: -30px;
}
@keyframes subtext {
0%,
100% {
text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914;
color: #FED128;
}
50% {
text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A;
color: #806914;
}
}
.hr-text {
width: 35vw;
height: 5px;
margin: auto;
background-color: #FED128;
box-shadow: 0 0 3vw #F40A35;
animation: hrtext 1s ease infinite;
-moz-animation: hrtext 1s ease infinite;
-webkit-animation: hrtext 1s ease infinite;
}
@keyframes hrtext {
0%,
100% {
box-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914;
color: #FED128;
}
50% {
box-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A;
color: #806914;
}
}
.hr-text-blue {
width: 35vw;
height: 5px;
margin: auto;
background-color: #ed8bfe;
box-shadow: 0 0 3vw #2356FF;
animation: hrtextblue 1s ease infinite;
-moz-animation: hrtextblue 1s ease infinite;
-webkit-animation: hrtextblue 1s ease infinite;
margin-top: 15px;
}
@keyframes hrtextblue {
0%,
100% {
box-shadow: 0 0 1vw #1041FF, 0 0 3vw #1041FF, 0 0 10vw #1041FF, 0 0 10vw #1041FF, 0 0 .4vw #8BFDFE, .5vw .5vw .1vw #147280;
color: #28D7FE;
}
50% {
box-shadow: 0 0 .5vw #082180, 0 0 1.5vw #082180, 0 0 5vw #082180, 0 0 5vw #082180, 0 0 .2vw #082180, .5vw .5vw .1vw #0A3940;
color: #146C80;
}
}
</style>
</head>
<body>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Text Effect</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="text">ShellDredd</div>
<div class="hr-text"></div>
<div class="hr-text-blue"></div>
<div class="subtext"><span>7 - 8 de Julio</span></div>
<div class="subtext"><span>A Coruña, Galicia</span></div>
</div>
</body>
</html>
</body>
</html>