-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (118 loc) · 1.74 KB
/
style.css
File metadata and controls
141 lines (118 loc) · 1.74 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
Colors:
Text: 1A1A1A
Green: #00B172
White: #FFF
*/
/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
color: #1A1A1A;
}
/* NAVBAR */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: white;
display: flex;
justify-content: space-between;
padding: 15px 30px;
align-items: center;
z-index: 100;
}
.logo {
width: 130px;
}
.nav-links {
list-style: none;
display: flex;
gap: 25px;
}
.nav-links a {
color: #1A1A1A;
text-decoration: none;
font-weight: bold;
}
/* HERO SECTION */
.hero {
background: url("../images/landing.jpg") center/cover no-repeat;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding-top: 60px;
}
.hero-text {
color: white;
text-align: center;
}
.hero-text h1 {
font-size: 60px;
margin-bottom: 15px;
}
/* FEATURES */
.features {
padding: 70px 20px;
text-align: center;
}
.features h2 {
font-size: 32px;
margin-bottom: 40px;
}
.features-container {
display: flex;
justify-content: center;
gap: 60px;
}
.feature-box {
width: 250px;
}
.feature-box img {
width: 100px;
margin-bottom: 20px;
}
.feature-box h3 {
margin-bottom: 10px;
}
/* GREEN SECTION */
.green-section {
background: #00B172;
display: flex;
justify-content: space-between;
padding: 80px;
color: white;
position: relative;
}
.green-text {
width: 50%;
}
.green-text h2 {
font-size: 40px;
margin-bottom: 40px;
}
.item {
margin-bottom: 25px;
}
.green-image {
width: 45%;
position: relative;
display: flex;
justify-content: center;
}
.app-img {
width: 300px;
border-radius: 10px;
}
.white-logo {
position: absolute;
top: 20px;
left: 20px;
width: 120px;
opacity: 0.7;
}