-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (69 loc) · 1.26 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Delius Swash Caps', cursive;
}
body{
background-image: url(./papai-noel.gif);
background-repeat: no-repeat;
background-position: top;
background-size: 60%;
background-color: black;
width: 100%;
height: 100vh;
overflow: hidden;
}
#arrow{
width: 100%;
height: 12vh;
text-align: center;
font-size: 2.5rem;
cursor: pointer;
color: aliceblue;
margin-top: 15rem;
margin-bottom: 1rem;
}
#arrow p{
font-size: 1.4rem;
}
#animation{
transition: 300ms;
animation-name: piscar;
animation-duration: 1s;
animation-timing-function: steps(3, start) ;
animation-delay: 1s;
animation-iteration-count: infinite;
}
@keyframes piscar{
to{
visibility: hidden;
}
}
.rotate{
transform: rotate(180deg);
transition: 300ms;
}
.active{
display: block !important;
}
#about p{
text-align: center;
width: 90%;
margin: 0 auto;
font-size: 1.2rem;
color: aliceblue;
}
@media screen and (min-width: 780px) {
body{
background-position: top;
background-size: 20%;
height: 100vh;
}
#arrow{
margin-top: 20rem;
}
#about p{
width: 80%;
}
}