-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (128 loc) · 2.27 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
129
130
*{
padding:0;
margin:0;
font-family: 'Josefin Sans', sans-serif;
box-sizing: border-box;
}
.hero{
height: 100vh;
width: 100%;
background-image: url(dark.jpg);
background-size: cover;
background-position: center;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
}
.logo{
color:white;
font-size: 35px;
font-weight: bold;
letter-spacing: 1px;
cursor: pointer;
}
span{
color: red;
}
nav ul li{
list-style-type: none;
display: inline-block;
padding: 10px 30px;
}
nav ul li a{
color:aqua;
text-decoration: none;
}
nav ul li a:hover{
color: red;
transition: .4s;
}
.btn{
background-color: red;
color: white;
text-decoration: none;
border: 2px solid transparent;
font-weight: bold;
padding: 10px 25px;
border-radius: 30px;
transition:transform .4s;
}
.btn:hover{
transform:scale(1.1);
}
.contet{
position:absolute;
top:50%;
left: 10%;
transform: translateY(-50%);
}
h1{
color: white;
margin: 20px 0px 20px;
font-size: 70px;
}
h3{
color:white;
font-size: 25px;
margin-bottom: 50px;
}
h4{
color: grey;
font-size: 20px;
letter-spacing: 2px;
}
.newslatter form{
width: 380px;
max-width: 100%;
position: relative;
}
.newslatter form input:first-child{
display: inline-block;
width: 100%;
padding: 14px 13px 14px 15px;
border: 2px solid #f9004d;
outline: none;
border-radius: 30px;
}
.newslatter form input:last-child{
position: absolute;
display: inline-block;
outline: none;
border: none;
padding: 10px 30px;
border-radius: 30px;
background-color: #f9004d;
color: white;
cursor: pointer;
box-shadow: 0px 0px 5px #000,0px 0px 15px #868686;
top: 6px;
right: 6px;
}
.shere{
position: absolute;
top: 90%;
left: 8%;
display: flex;
flex-wrap:nowrap;
justify-content: flex-start;
align-items: center;
}
.shere p{
font-size: 17px;
color: white;
margin-right: 60px;
}
.shere .social a{
display: inline-block;
color: white;
margin-right: 15px;
transition: transfrom .3s
}
.shere .social a:hover{
transform: scale(1.6);
}