This repository was archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
211 lines (181 loc) · 3.81 KB
/
Copy pathstyles.css
File metadata and controls
211 lines (181 loc) · 3.81 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
@keyframes Gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* General styling */
body {
font-family: 'Raleway', sans-serif;
margin: 0;
padding: 0;
}
section {
height: 80 vh;
}
h1 {
font-size: 2.5rem;
color: #5C74A8;
}
h2 {
font-size: 1.5rem;
color: #7A8DE7;
}
p {
font-size: 1.25rem;
color: #000000;
}
/* Header */
.site-header {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 10;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 5rem;
background: linear-gradient(to bottom, #FFFFFF, transparent);
color: #fff;
padding: 20px 100px;
}
.main-nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.main-nav li {
margin-left: 1rem;
padding: 25px;
}
.main-nav a {
color: #5C74A8;
text-decoration: none;
}
/* Landing Section */
#landing {
position: relative;
height: 100vh;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0rem 15rem;
background: url('bg.png') left bottom no-repeat, radial-gradient(circle, #BFFFF4, #FFFFFF, #B4ECFF, #D7FFFA) center center repeat;
background-size: 135% auto, 200% 200%;
animation: Gradient 25s ease infinite;
}
#landing h1 {
font-size: 2.5rem;
margin: -5rem 5rem 1rem;
}
#landing p {
font-size: 1.5rem;
margin: 1rem 5rem;
}
button {
padding: 0.5rem 1rem;
background-color: #7A8DE7;
border-radius: 5px;
color: #fff;
border: none;
cursor: pointer;
margin: 1rem 5rem;
font-size: 1rem;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#landing button:hover {
background-color: #5C74A8;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* About and Features Sections */
#features {
position: relative;
height: 100vh; /* Optional: You can adjust this height */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: radial-gradient(circle, #BFFFF4, #FFFFFF, #B4ECFF, #D7FFFA);
background-size: 200% 200%;
animation: Gradient 10s ease infinite;
}
.about-container, .features-container {
text-align: center;
padding: 1rem 5rem;
}
.about-list ul, .features-list ul {
display: flex;
justify-content: space-between;
padding: 1rem 20rem 5rem;
list-style: none;
}
.about-item, .features-item {
flex: 1;
text-align: center;
margin: 20px;
}
.features-item {
background-color: #FFFFFF;
border-radius: 20px;
padding: 50px 20px 5px;
filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
}
/* Demo Section */
#demo {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5rem 20rem;
}
#demo h1 {
font-size: 2.5rem;
margin: -5rem 5rem 1rem;
}
#demo p {
font-size: 1.5rem;
margin: 1rem 5rem;
}
#demo .copy-container img {
margin: 1rem 5rem;
width: 150px;
}
#demo button {
padding: 0.5rem 1rem;
background-color: #7A8DE7;
border-radius: 5px;
color: #fff;
border: none;
cursor: pointer;
margin: 1rem 5rem;
font-size: 1rem;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#demo button:hover {
background-color: #5C74A8;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Footer */
.site-footer {
background: radial-gradient(circle, #BFFFF4, #FFFFFF, #B4ECFF, #D7FFFA) center center repeat;
background-size: 200% 200%;
animation: Gradient 25s ease infinite;
}
.footer-links {
display: flex;
justify-content: space-between;
padding: 5rem 30rem;
}
.footer-links ul {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 0.5rem;
}