-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.css
106 lines (96 loc) · 1.65 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
*{
/* border: 1px black solid; */
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.nav{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.logo{
padding: 30px;
}
.logo img{
height:80px ;
width: 200px;
}
.mid-nav ul{
display: flex;
flex-direction: row;
list-style-type: none;
}
.nav .getStarted button{
width: 140px ;
height: 50px;
border-radius: 20px;
background-color: #2B9BFF;
border: none;
color: white;
font-size: 15px;
}
.nav .getStarted{
padding: 30px;
}
.mid-nav ul li{
padding: 30px;
padding-top: 50px;
font-size: 20px;
font-weight: 700;
color: #134978;
}
.content1{
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 50px;
}
.content1 .gallery img{
height: 300px;
width: 350px;
padding-left: 50px;
border-radius: 30px ;
}
.content1 .gallery{
padding: 60px;
position: relative;
}
.content1 .gallery .hardware{
position: absolute;
top: -5%;
right: 90%;
}
.content1 .gallery img{
margin-left: 20px;
border-radius: 30px ;
}
.content1 .textContent
{
padding: 20px;
}
.content1 .textContent .text{
padding: 15px;
}
.text h1{
font-size: 40px;
padding-bottom: 10px;
color: #134978;
line-height: 60px;
}
.text h3{
font-size: 20px;
padding: 5px;
color: #5b7993;
}
.btns button{
width: 140px ;
height: 50px;
border-radius: 20px;
background-color: #2B9BFF;
border: none;
color: white;
margin: 10px;
font-size: 17px;
}