-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.css
128 lines (108 loc) · 2.21 KB
/
landing.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@300;400;500;600;700;800;900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins",sans-serif;
}
section{
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
background:url(1994605.jpg)no-repeat ;
background-size: cover;
background-position: center;
}
header{
position: relative;
top: 0;
width: 100%;
padding: 30px 100px;
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo{
position: relative;
color: black;
font-size: 30px;
text-decoration: none;
text-transform: uppercase;
font-weight: 800;
letter-spacing: 1px;
}
header .navigation a{
color: black;
text-decoration: none;
font-weight: 500;
letter-spacing: 1px;
padding : 2px 15px;
border-radius: 20px;
transition: 0.3s;
transition-property: background;
}
header .navigation a:not(:last-child){
margin-right: 30px;
}
header .navigation a:hover{
background : #fff;
}
.content{
max-width: 650 px;
margin: 60px 100px;
}
.content .info h2{
color: #ababff;
font-size: 55px;
text-transform: uppercase;
font-weight: 800;
letter-spacing: 2px;
line-height: 60px;
margin-bottom: 60px;
}
.content .info h2 span{
color: #226A80;
font-size: 50px;
font-weight:700;
}
.content .info p{
font-size: 16px;
font-weight: 500;
margin-bottom: 40px;
}
.content .info-btn{
color: #fff;
background: #226A80;
margin-bottom: 40px;
text-decoration: none;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 2px;
padding: 10px 20px;
border-radius: 5px;
}
.content .info-btn:hover{
background: #6a4fff
}
.media-icons{
display: flex;
justify-content: center;
align-items: center;
margin: auto;
}
.media-icons a{
position: relative;
color: #111;
font-size: 25px;
transition: 0.5s;
transition-property: transform;
}
.media-icons :not(:last-child){
margin-right: 60px;
}
.media-icons a:hover{
transform: scale(1.5);
}