-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite-animated.css
More file actions
120 lines (101 loc) · 1.85 KB
/
Copy pathwebsite-animated.css
File metadata and controls
120 lines (101 loc) · 1.85 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.header{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(5,0,136,0.5), rgba(5,0,136,0.5)), url(/imagenes/back.png);
background-position: center;
background-size: cover;
overflow-x: hidden;
}
nav{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 8%;
transition: backgrund 1s;
}
nav .logo{
display: flex;
align-items: center;
font-size: 26px;
font-weight: 600;
color: #fff;
}
nav .logo img{
width: 60px;
margin-right: 10px;
}
nav ul li{
display: inline-block;
list-style-type: none;
margin: 10px 20px;
}
nav ul li a{
text-decoration: none;
color: #fff;
font-weight: 500;
}
nav:hover{
background: #fff;
}
nav:hover .logo{
color: #333;
}
nav:hover ul li a{
color: #333;
}
.content{
margin-top: 9%;
margin-left: 9%;
color: #fff;
}
.content h1{
font-size: 120px;
line-height: 140px;
font-weight: 600;
}
.content p{
max-width: 500px;
line-height: 28px;
opacity: 0;
}
.links{
margin-top: 30px;
opacity: 0;
}
.links a{
color: #fff;
text-decoration: none;
display: inline-block;
}
.btn{
border: 2px solid #fff;
padding: 10px 35px;
border-radius: 30px;
margin-right: 15px;
}
.slide-left{
animation: slideleft 1s linear forwards;
}
@keyframes slideleft{
0%{
transform: translate(100px);
opacity: 0;
}
100%{
transform: translate(0px);
opacity: 1;
}
}
p.slide-left{
animation-delay: 1s;
}
.links.slide-left{
animation-delay: 2s;
}