-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (93 loc) · 1.7 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
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
*{
margin : 0;
padding : 0;
box-sizing : border-box;
font-family : 'Poppins', sans-serif;
}
.hero {
width : 100%;
min-height : 100vh;
background-image : url('images/back-image.png');
background-position : center;
background-size : cover;
padding : 10px 10%;
overflow : hidden;
position : relative;
}
nav {
padding : 10px 0;
display : flex;
align-items : center;
justify-content : space-between;
}
.logo {
width : 140px;
}
nav ul li {
display : inline-block;
list-style : none;
margin : 10px 15px;
}
nav ul li a {
text-decoration : none;
color : #333;
font-weight : 400;
}
.login-btn {
text-decoration : none;
color : #333;
margin-right : 15px;
font-weight : 400;
}
.btn {
display : inline-block;
text-decoration : none;
padding : 14px 40px;
color : #fff;
background : linear-gradient(45deg, #df4881, #c430d7);
font-size : 14px;
border-radius : 30px;
border-top-right-radius : 0;
transition : 0.5s;
}
.content{
margin-top : 10%;
max-width : 600px;
}
.content h1{
font-size : 70px;
color : #222;
}
.content p{
margin : 10px 0 30px;
color : #333;
animation-delay : 0.5s;
}
.content .btn {
padding : 15px 80px;
font-size : 16px;
animation-delay : 1s;
}
.btn:hover{
border-top-right-radius : 30px;
}
.feature-img {
width : 450px;
position : absolute;
bottom : 0;
right : 10%;
}
.feature-img.anim{
animation-delay : 1.5s;
}
.anim {
opacity : 0;
transform : translateY(30px);
animation : moveup 0.5s linear forwards;
}
@keyframes moveup{
100%{
opacity : 1;
transform : translateY(0);
}
}