OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
landingpage
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
π
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
π
index.html
9.49 KB
03/02/2025 02:01:09 PM
rw-r--r--
π
index1.html
21.2 KB
03/02/2025 02:01:39 PM
rw-r--r--
π
script.js
811 bytes
03/02/2025 02:01:09 PM
rw-r--r--
π
styles.css
6.21 KB
03/02/2025 02:01:09 PM
rw-r--r--
Editing: styles.css
Close
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lato', sans-serif; } body { line-height: 1.6; color: #1F2937; } header { background-color: #1E3A8A; padding: 1rem; position: fixed; width: 100%; top: 0; z-index: 1000; } nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; } .logo-img { height: 40px; } .nav-links { display: flex; list-style: none; } .nav-links li { margin-left: 2rem; } .nav-links a { color: white; text-decoration: none; font-size: 1.1rem; } .cta-button { background-color: #F97316; color: white; border: none; padding: 0.5rem 1.5rem; border-radius: 5px; cursor: pointer; font-size: 1rem; } .cta-button.secondary { background-color: transparent; border: 2px solid #F97316; color: #F97316; margin-left: 1rem; } .hero { background-color: #F3F4F6; padding: 5rem 2rem 2rem; text-align: center; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; } .hero h1 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; color: #1E3A8A; margin-bottom: 1rem; } .hero p { font-size: 1.2rem; color: #4A5568; margin-bottom: 2rem; } .hero-visual { margin-top: 2rem; max-width: 100%; } .hero-img { max-width: 800px; width: 100%; border-radius: 10px; } .modes { padding: 4rem 2rem; text-align: center; } .modes h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; color: #1E3A8A; margin-bottom: 2rem; } .mode-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; } .mode-card { background-color: white; padding: 1.5rem; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .mode-img { max-width: 100%; border-radius: 5px; margin-bottom: 1rem; } .mode-card h3 { font-family: 'Poppins', sans-serif; color: #1E3A8A; margin-bottom: 0.5rem; } .mode-card p { color: #4A5568; } footer { background-color: #1E3A8A; color: white; text-align: center; padding: 1rem; position: relative; bottom: 0; width: 100%; } footer a { color: white; text-decoration: none; } /* Responsive Design */ @media (max-width: 768px) { .nav-links { display: none; } .cta-button { display: block; margin: 1rem auto; } .hero h1 { font-size: 2rem; } .hero p { font-size: 1rem; } } /* Existing styles remain the same, but update the hero button styling */ .hero .cta-button { background-color: #F97316; color: white; border: none; padding: 0.75rem 2rem; /* Increased padding for better visibility */ border-radius: 8px; /* Slightly larger radius for a modern look */ cursor: pointer; font-size: 1rem; margin: 0.5rem; /* Add margin between buttons */ transition: background-color 0.3s ease; /* Smooth hover effect */ } .hero .cta-button.secondary { background-color: transparent; border: 2px solid #F97316; color: #F97316; margin-left: 1rem; /* Maintain spacing, but ensure it works on all screens */ } .hero .cta-button:hover { background-color: #E55B0A; /* Darker orange on hover for primary button */ } .hero .cta-button.secondary:hover { background-color: #F97316; color: white; } /* Ensure buttons stack nicely on mobile */ @media (max-width: 768px) { .hero .cta-button { display: block; /* Stack buttons vertically on mobile */ margin: 0.5rem auto; /* Center and space them */ width: 80%; /* Ensure buttons donβt stretch too wide */ } .hero .cta-button.secondary { margin-left: 0; /* Remove left margin on mobile for stacking */ } } .features { padding: 4rem 2rem; text-align: center; background-color: #F3F4F6; } .features h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; color: #1E3A8A; margin-bottom: 2rem; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; margin-bottom: 2rem; } .feature-card { background-color: white; padding: 1.5rem; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .feature-img { max-width: 100%; border-radius: 5px; margin-bottom: 1rem; } .feature-card h3 { font-family: 'Poppins', sans-serif; color: #1E3A8A; margin-bottom: 0.5rem; } .feature-card p { color: #4A5568; } /* Responsive Design for Features */ @media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; /* Stack cards on mobile */ } } .who-for { padding: 4rem 2rem; text-align: center; background-color: white; } .who-for h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; color: #1E3A8A; margin-bottom: 2rem; } .audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; margin-bottom: 2rem; } .audience-card { background-color: #F3F4F6; padding: 1.5rem; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .audience-card:hover { transform: translateY(-5px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .audience-card h3 { font-family: 'Poppins', sans-serif; color: #1E3A8A; margin-bottom: 0.5rem; } .audience-card p { color: #4A5568; margin-bottom: 1rem; } /* Placeholder for images (remove or adjust when adding real images) */ .audience-card img { max-width: 100%; border-radius: 5px; margin-bottom: 1rem; display: none; /* Hidden until images are added */ } /* Responsive Design for Who Itβs For */ @media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; /* Stack cards on mobile */ } }