Spaces:
Sleeping
Sleeping
File size: 8,227 Bytes
65bffa4 |
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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
.hero-section {
text-align: center;
padding: 2rem;
}
.hero-section-3{
margin-top: 50px;
}
.hero-section h1 {
font-size: 2.5rem;
color: #ffffff;
/* Dark blue color */
margin-top: 10rem;
margin-bottom: 1rem;
}
.hero-section p {
font-size: 1.1rem;
color: #333;
max-width: 800px;
margin: 0 auto 2rem;
}
.project-stats {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin-top: 2rem;
}
.stat-item {
text-align: center;
flex: 1;
min-width: 150px;
max-width: 200px;
background-color: rgba(11, 22, 35, 1);;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: relative;
height: 150px;
}
.stat-item p {
font-size: 20px;
color: rgba(148, 148, 148, 1);
position: absolute; /* Agar elemen ini bisa diposisikan */
top: 10px; /* Posisikan di kiri atas */
left: 10px; /* Posisikan di kiri atas */
}
.stat-item h2 {
font-size: 64px;
color: rgba(0, 246, 255, 1);
position: absolute; /* Agar elemen ini bisa diposisikan */
bottom: 10px; /* Posisikan di kanan bawah */
right: 10px; /* Posisikan di kanan bawah */
}
/* Responsive design */
@media (max-width: 768px) {
.project-stats {
flex-direction: column;
align-items: center;
}
.stat-item {
width: 100%;
max-width: none;
}
}
.community-section {
padding: 50px 20px;
text-align: center;
}
.community-section h2{
font-size: 48px;
margin-bottom:100px;
}
.community-grid {
display: flex;
justify-content: center;
gap: 20px;
}
.community-item {
background-size: cover; /* Membuat gambar menutupi seluruh div */
background-position: center; /* Posisi gambar agar selalu berada di tengah */
width: 343px;
height: 375px; /* Sesuaikan dengan kebutuhan */
display: flex;
flex-direction: column;
justify-content: flex-end; /* Menempatkan konten (h3 & p) di bagian bawah */
padding: 10px;
color: white; /* Agar teks terlihat di atas gambar */
border-radius: 8px; /* Optional, jika ingin sudut melengkung */
}
.community-item-text{
background-color: rgba(7, 14, 22, 1);
width: 292px;
height: 186px;
border-radius: 30px;
margin: 0 auto;
}
.community-item-text h3,
.community-item-text p {
margin: 0;
}
.community-item-text h3 {
font-size: 24px;
font-weight: bold;
text-align: left;
margin: 20px 10px 25px 25px;
}
.community-item-text p {
font-size: 14px;
color: rgba(182, 182, 182, 1);
margin: 0 auto;
margin-right: 25px;
margin-left: 25px;
}
.reinvent h2{
font-size: 48px;
}
.reinvent p{
font-size: 20px;
text-align: center;
}
.featured-projects h2 {
text-align: center;
margin-top: 0;
margin-bottom: 30px;
}
.project-detail-container {
color: white;
padding: 100px;
position: relative;
}
.project-list-section {
display: grid;
grid-template-columns: repeat(2, 1fr);
/* 3 kolom tetap */
gap: 50px;
}
.project-card {
background-color: #1c1c1e;
background-size: cover;
background-position: center;
border-radius: 20px;
overflow: hidden;
position: relative;
height: 400px;
display: flex;
/* Tambahkan ini untuk menyesuaikan tinggi child */
flex-direction: column;
/* Elemen disusun vertikal */
}
.project-info {
background-color: rgba(0, 0, 0, 0.6);
color: white;
padding: 15px;
border-radius: 0;
position: relative;
/* Tambahkan ini */
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
justify-content: flex-start;
/* Pastikan konten ada di atas */
z-index: 1;
box-sizing: border-box;
height: 100%;
}
.project-info h3 {
font-size: 48px;
margin-top: 5px;
margin-bottom: 10px;
/* Spasi antar elemen */
}
.project-info h5 {
font-size: 16px;
margin-top: 0;
}
.project-info p {
margin: 5px 0;
/* Spasi antar paragraf */
}
.project-description {
text-align: justify;
margin-bottom: 15px;
/* Spasi dengan tombol */
margin-bottom: 15px;
/* Mengatur jarak bawah */
min-height: 120px;
}
.project-date {
display: flex;
font-weight: bold;
margin-top: 15px;
margin-bottom: 15px;
padding: 10px;
/* Kasih padding biar gak mepet */
gap: 20px;
}
.project-date-left,
.project-date-right {
display: flex;
flex-direction: column;
/* Ngebuat h4 & h6 vertikal */
justify-content: center;
/* Centering secara vertical */
align-items: center;
/* Centering secara horizontal */
padding: 10px;
}
.project-date-left {
width: auto;
border-top-left-radius: 15px;
/* Rounded kiri atas */
border-bottom-left-radius: 15px;
/* Rounded kiri bawah */
background-color: #f0f0f0;
/* Kasih warna background biar kelihatan */
}
.project-date-right {
width: 80px;
/* Bisa diatur sesuai kebutuhan */
border-top-right-radius: 15px;
/* Rounded kanan atas */
border-bottom-right-radius: 15px;
/* Rounded kanan bawah */
background-color: #f0f0f0;
/* Kasih warna background biar kelihatan */
}
.project-date h4,
.project-date h6 {
color: black;
/* Semua font jadi warna hitam */
margin: 0;
}
.project-date h4 {
font-size: 20px;
/* Ukuran font h4 jadi 20px */
margin-bottom: 10px;
}
.project-date h6 {
font-size: 10px;
/* Ukuran font h6 jadi 10px */
}
.get-in-touch {
background-color: rgba(7, 14, 22, 1);
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
position: absolute;
/* Pake absolute supaya bisa diposisikan relatif ke parent */
bottom: 30px;
/* Posisikan tombol di bawah */
right: 30px;
/* Posisikan tombol di kanan */
width: fit-content;
}
.get-in-touch:hover {
background-color: #0056b3;
}
.articles-section {
padding: 50px 20px;
}
.articles-grid {
display: flex;
justify-content: center;
gap: 20px;
}
.article-item {
width: 30%;
padding: 20px;
border-radius: 10px;
}
.article-item img {
width: 100%;
border-radius: 10px;
margin-bottom: 15px;
}
.footer-section {
padding: 50px 20px;
background-color: #0d1b2a;
text-align: center;
}
.footer-links {
display: flex;
justify-content: space-around;
margin-top: 30px;
}
.link-column {
width: 20%;
}
.link-column p {
font-weight: bold;
margin-bottom: 10px;
}
.link-column ul {
list-style: none;
padding: 0;
}
.link-column ul li {
margin-bottom: 8px;
color: #a9a9a9;
cursor: pointer;
}
.link-column ul li:hover {
color: white;
}
.image-container {
display: flex;
justify-content: space-between; /* Memberikan jarak yang sama antar gambar */
gap: 10px; /* Jarak antar gambar bisa diatur sesuai kebutuhan */
padding: 20px;
}
.image-container img {
height: 60px; /* Set height gambar menjadi 50px */
width: auto; /* Width otomatis menyesuaikan rasio gambar */
}
.earth-shape {
width: 1200px;
/* Adjust the width as per your requirement */
height: auto;
/* Maintains the aspect ratio */
margin: 20px auto;
/* Centers the image horizontally */
display: block;
}
.container-project {
background-color: #070E16;
color: #ffffff;
padding: 50px 20px;
border-top-left-radius: 50px;
/* Rounded top corners */
border-top-right-radius: 50px;
/* Rounded top corners */
width: 100vw;
/* Full width of the viewport */
margin-left: calc(-50vw + 50%);
/* Centering the full-width container */
box-sizing: border-box;
}
.load-more-1 {
background-color:black;
color: white;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
margin: 0 auto;
margin-left: auto;
margin-bottom: 2rem;
display: block;
border: 10px;
}
.load-more-2 {
background-color: rgba(11, 22, 35, 1);
color: white;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
margin-top: 100px;
margin-left: auto;
margin-bottom: 2rem;
display: block;
}
|