-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
193 lines (168 loc) · 3.07 KB
/
index.css
File metadata and controls
193 lines (168 loc) · 3.07 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
@media (max-width: 600px)
{
.facet_sidebar
{
display: none;
}
}
body{
background-color: black ;
overflow-x: hidden;
padding: 0 20px;
color: white;
}
header img {
position: absolute;
margin-top: 2%;
}
.logo img{
position: relative;
width: 15%;
left: 80%;
top: 30%;
}
.simbol{
position: absolute;
top: 1%;
left: 3%;
}
.simbol img {
position: relative;
width: 30%;
padding: 2%;
border:2px solid black;
border-radius: 50%;
background-image: linear-gradient(45deg,black,red,black,red);
box-shadow: 0px 0px 50px red,
0px 0px 40px red,0px 0px 30px red,
0px 0px 20px red,0px 0px 10px red;
}
.simbol img:hover{
cursor: pointer;
border-color: red;
}
.box {
position: absolute;
border: 1vh solid red;
width: 700px;
height: 700px;
left: 70%;
top: 35%;
background-color: red;
border-radius: 50%;
}
.lata img{
position: relative;
width: 50%;
left: -10%;
}
.menu{
position: absolute;
top: 25%;
left: 1%;
white-space: nowrap;
}
.menu p{
position: relative;
display: inline;
margin: 8px;
font-size: 20px;
}
.menu p:hover{
color: red;
}
a{color:inherit}
.slidein {
animation-name: subir;
animation-duration: 4s;
animation-iteration-count: initial;
white-space: nowrap;
}
@keyframes subir {
from {
margin-left: 100%;
width:0%;
color: red;
}
to {
margin-left: 0%;
width:0%;
color: white;
}
}
footer{
position: absolute;
top: 40%;
}
.media-social {
position: relative;
padding: 3px;
}
.media-social img{
position: relative;
display: flex;
width: 4%;
margin: 6px;
border: 2px solid white;
border-radius: 50%;
padding: 8px;
background-color: red;
cursor: pointer;
}
.media-social img:hover{
box-shadow: 0px 0px 10px red,
0px 0px 20px red, 0px 0px 30px red,
0px 0px 40px red, 0px 0px 50px red;
}
.media-social p {
margin-top: 1%;
left:-1%;
font-size: 110%;
}
.media-social h3{
position: absolute;
top: 90%;
left: 20%;
}
.media-social h3:hover{
color: red;
cursor: pointer;
}
.slideLeft {
animation-name: slideLeft;
animation-iteration-count: initial;
animation-duration: 2s;
}
@keyframes slideLeft {
from {
margin-top: 100%;
}
to {
margin-top: 5%;
}
}
.deslizar {
animation-name: deslizar;
animation-iteration-count: initial;
animation-duration: 2s;
}
@keyframes deslizar {
from {
padding-left: 700%;
color:red;
}
to {
padding-left: 0%;
color: white;
}
}
@media screen and (max-width: 768px){
from {
background-color: aqua;
}
}
@media screen and (max-width: 600px){
to {
background-color: red;
}
}