-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (128 loc) · 2.66 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
/* ===( CODE AASHU )=== */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
header{
width: 100%;
padding: 20px 100px;
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
top: 0;
left: 0;
}
.logo img{
width: 100px;
height: 100px;
object-fit: contain;
}
.nav ul{
display: flex;
align-items: center;
list-style-type: none;
}
.nav ul li{
font-family: 'poppins' , 'sans-serif';
font-weight: 400;
font-size: 20px;
text-transform: capitalize;
margin-left: 50px;
cursor: pointer;
transition: .5s;
}
.nav ul li:nth-child(5){
color: #fff;
background: rgb(132 103 245);
padding: 15px 45px;
border-radius: 20px;
}
.nav ul li:hover:nth-child(5){
border: 1px solid rgb(132 103 245);
background: transparent;
transform: translateY(0);
}
.nav ul li:hover{
color: rgb(132 103 245);
transform: translateY(-5px);
}
.hero-section{
width: 100%;
height: 100vh;
background-image: url("img/strip.png");
background-repeat: no-repeat;
background-size: contain;
display: flex;
align-items: center;
justify-content: center;
background-color: #fdc2c4;
}
.hero-section h1{
font-family: 'poppins' , 'sans-serif';
font-weight: 600;
font-size: 60px;
text-transform: capitalize;
width: 699px;
line-height: 85px;
color: #1b2026;
}
h1 span{
color: rgb(132 103 245);
}
.hero-section p{
font-family: 'poppins' , 'sans-serif';
font-weight: 500;
font-size: 20px;
text-transform: capitalize;
width: 600px;
padding: 15px 0px 60px;
opacity: .5;
}
.hero-img{
margin-top: 150px;
}
input{
width: 600px;
padding: 25px;
border: none;
border-radius: 30px;
box-shadow: 0px 5px 15px 0px #0000006e;
cursor: pointer;
}
button{
font-family: 'poppins' , 'sans-serif';
font-weight: 400;
font-size: 15px;
position: absolute;
right: 110px;
top: 6px;
padding: 15px 25px;
border-radius: 20px;
border: none;
background: linear-gradient(to left,#fdc2c4,#9d7bec);
color: #fff;
cursor: pointer;
}
.input-field{
position: relative;
}
.icons{
position: absolute;
bottom: 50px;
display: flex;
align-items: center;
gap: 40px;
}
.icon{
background: rgb(132 103 245);
padding: 8px 11px;
border-radius: 50%;
transition: .5s;
cursor: pointer;
}
.icon:hover{
transform: translateY(-10px);
}