-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (108 loc) · 2.02 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (108 loc) · 2.02 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: poppins, sans-serif;
}
.hero{
width: 100%;
min-height: 150vh;
background-image: url(back-image.png.png);
background-size: cover;
background-position: center;
filter: brightness(1);
padding: 10px 10%;
overflow: hidden;
position: relative;
}
body{
background-color: black;
color: white;
margin: 0;
padding: 0%;
font-family: poppins, sans-serif;
}
nav img{
width: 100px;
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
height: auto;
display: block;
transition: transform 0.3s ease;
}
nav img:hover{
transform: scale(1.1);
}
nav{
padding: 10px 0%;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 140px;
height: auto;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 15px;
}
nav ul li a{
text-decoration: none;
color: white;
font-size: 18px;
font-weight: 400;
transition: color 0.3s ease;
}
.join-btn{
display: inline-block;
text-decoration: none;
padding: 14px 40px;
color: tomato;
background-image: linear-gradient(45deg, #29b8dc, #f06595);
font-size: 14px;
border-radius: 30px;
font-weight: 500;
transition: 0.5s ease;
border-top-right-radius: 0px;
}
.content{
margin-top: 10px;
max-width: 600px;
}
.content h1{
font-size: 70px;
color: tomato;
}
.content p{
font-size: 20px;
margin: 20px 0;
color: blanchedalmond;
animation-delay: 0.5s;
}
.join-btn:hover{
border-top-right-radius: 30px;
background-image: linear-gradient(45deg, #f06595, #29b8dc);
color: white;
animation-delay: 1s;
}
.image{
width: 530px;
position: absolute;
bottom: 20%;
right: 10%;
}
.img.anim{
animation-delay: 1,5s;
}
.anim{
opacity: 0;
transform: translateY(30px);
animation: moveup 0.5s linear forwards;
}
@keyframes moveup {
to {
opacity: 1;
transform: translateY(0);
}
}