OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
knoblyExpressLandingPage
/
assets
/
css
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/20/2024 11:17:08 AM
rwxr-xr-x
📄
style.css
12.67 KB
08/20/2024 11:17:08 AM
rw-r--r--
Editing: style.css
Close
/* General Styles */ body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: #111; color: #fff; line-height: 1.6; } .logo-img { max-width: 120px; height: auto; display: block; } header { background-color: #000; /* Changed to a more neutral color */ padding: 10px 0; position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; transition: background-color 0.3s ease; } nav { display: flex; justify-content: space-between; align-items: center; width: 90%; margin: auto; } .nav-links { list-style: none; display: flex; gap: 20px; } .nav-links a { text-decoration: none; color: #fff; font-weight: 600; font-size: 16px; transition: color 0.3s ease; } .nav-links a:hover { color: #1db954; } .auth-links { display: flex; gap: 10px; } .auth-links a { background-color: transparent; color: #fff; padding: 8px 16px; border: 2px solid #fff; border-radius: 25px; /* Rounded buttons */ text-decoration: none; font-weight: 600; transition: background-color 0.3s ease, color 0.3s ease; font-size: 14px; } .auth-links .login:hover { background-color: #fff; color: #1db954; } .auth-links .signup:hover { background-color: #1db954; color: #fff; } .menu-toggle { display: none; } /* hero section css */ #hero { display: flex; justify-content: space-between; align-items: center; padding: 80px 20px; /* Increased padding for more space */ background: #ddd8d3; /* Spotify-like green background */ color: #444140; overflow: hidden; } .hero-content { max-width: 600px; padding-right: 20px; } .hero-content h2 { font-size: 3rem; /* Larger font size */ margin-bottom: 20px; line-height: 1.2; /* Text shadow for better readability */ } .hero-content p { font-size: 1.2rem; margin-bottom: 30px; } .hero-buttons { display: flex; gap: 20px; margin-bottom: 30px; } .btn { padding: 15px 30px; border: none; border-radius: 25px; /* Rounded buttons */ color: #fff; text-decoration: none; font-size: 1rem; text-align: center; transition: background-color 0.3s ease, transform 0.3s ease; } .btn.primary { background-color: #fff; color: #1db954; } .btn.primary:hover { background-color: #e5e5e5; transform: scale(1.05); } .btn.secondary { background-color: rgba(255, 255, 255, 0.2); border: 2px solid #fff; } .btn.secondary:hover { background-color: rgba(255, 255, 255, 0.4); transform: scale(1.05); } .hero-info { display: flex; flex-direction: column; gap: 20px; } .info-item { color:#ffffff; background: #7e7a79; /* Slightly transparent background */ padding: 20px; border-radius: 15px; /* Rounded corners */ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); transition: background-color 0.3s ease, transform 0.3s ease; } .info-item:hover { background-color: #e45d1e; transform: translateY(-5px); } .info-item h3 { font-size: 1.5rem; margin-bottom: 10px; } .info-item p { font-size: 1rem; } .hero-image img { max-width: 500px; width: 100%; height: auto; border-radius: 15px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } section { padding: 60px 20px; } /* featues section css */ #features { background: #333; color: #fff; padding: 60px 20px; text-align: center; } .section-description { font-size: 1.2rem; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; } .feature-container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; } .feature { background: #444; padding: 20px; border-radius: 12px; /* Rounded corners */ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); flex: 1 1 240px; /* Adjusted flex-basis */ max-width: 320px; /* Adjusted max-width */ text-align: center; transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; } .feature:hover { background-color: #555; transform: translateY(-8px); /* Increased translation on hover */ box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Enhanced box-shadow */ } .feature i { font-size: 2.5rem; /* Larger icon size */ color: #1db954; margin-bottom: 15px; } .feature h3 { font-size: 1.6rem; margin-bottom: 15px; } .feature p { font-size: 1rem; line-height: 1.4; } /* Responsive Styles */ @media (max-width: 768px) { .section-description { font-size: 1rem; margin-bottom: 20px; } .feature { flex: 1 1 100%; /* Full width on smaller screens */ max-width: 100%; /* Ensure full width */ } .feature i { font-size: 2rem; /* Adjusted icon size */ } .feature h3 { font-size: 1.4rem; } .feature p { font-size: 0.9rem; } } /* download the application css */ /* Section Styling */ /* Section Styling */ #download { background: #000; /* Dark background for contrast */ color: #fff; /* White text color for readability */ padding: 60px 20px; text-align: center; } /* Heading Styling */ #download h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: bold; color: #1db954; /* Spotify green color */ } /* Tagline Styling */ .tagline { font-size: 1.2rem; margin-bottom: 30px; color: #ccc; /* Light gray for subtlety */ } /* Download Container Styling */ .download-container { display: flex; flex-direction: column; align-items: center; gap: 40px; margin-top: 20px; } /* Download Links Styling */ .download-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; } .download-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; transition: transform 0.3s ease; color: #fff; max-width: 200px; } .download-link img { max-width: 100%; /* Responsive image size */ height: auto; border-radius: 12px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; } .download-link:hover img { transform: scale(1.05); } .download-link span { margin-top: 10px; font-size: 1.1rem; font-weight: bold; } /* Scanner Styling */ .scanner { display: flex; flex-direction: column; align-items: center; gap: 20px; } .scanner img { max-width: 180px; height: auto; border: 3px solid #1db954; border-radius: 12px; } .scanner p { font-size: 1.1rem; color: #ccc; /* Light gray for readability */ font-weight: bold; } /* Additional Info Styling */ .additional-info { margin-top: 30px; font-size: 1rem; color: #ccc; } .additional-info a { color: #1db954; /* Spotify green */ text-decoration: underline; } .additional-info a:hover { color: #148e1b; /* Darker green for hover effect */ } /* Responsive Styles */ @media (max-width: 768px) { .download-links { flex-direction: column; } .scanner img { max-width: 150px; } .scanner p { font-size: 1rem; } .additional-info { font-size: 0.9rem; } } /* General Footer Styles css */ footer { background: linear-gradient(135deg, #282828, #1f1f1f); color: #fff; padding: 40px 20px; font-family: 'Arial', sans-serif; position: relative; z-index: 1; } .footer-container { max-width: 1200px; margin: 0 auto; } .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; } .footer-section { flex: 1; min-width: 250px; margin-bottom: 20px; } /* Logo Section */ .footer-logo { width: 150px; transition: transform 0.3s ease-in-out; } .footer-logo:hover { transform: scale(1.1); } .footer-description { font-size: 16px; margin-top: 10px; color: #aaa; } /* Quick Links */ .links-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .footer-links { list-style: none; padding: 0; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #fff; text-decoration: none; transition: color 0.3s ease, padding-left 0.3s ease; } .footer-links a:hover { color: #1db954; padding-left: 10px; } /* Social Icons */ .social-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .social-icons { display: flex; gap: 15px; } .social-icon { color: #fff; font-size: 24px; transition: color 0.3s ease, transform 0.3s ease; } .social-icon:hover { color: f55f31; transform: scale(1.2); } .social-icon i { display: inline-block; width: 40px; height: 40px; line-height: 40px; text-align: center; border-radius: 50%; background: #333; transition: background 0.3s ease; } .social-icon:hover i { background: #f55f31; } .social-description { font-size: 14px; margin-top: 10px; color: #aaa; } /* Newsletter Section */ .newsletter-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .newsletter-section p { font-size: 16px; margin-bottom: 15px; color: #aaa; } .newsletter-form { display: flex; gap: 10px; } .newsletter-form input { flex: 1; padding: 10px; border-radius: 5px; border: none; outline: none; font-size: 16px; } .newsletter-form button { padding: 10px 20px; border: none; border-radius: 5px; background: #1db954; color: #fff; cursor: pointer; font-size: 16px; transition: background 0.3s ease; } .newsletter-form button:hover { background: #1a9f4a; } .contact-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .contact-section p { font-size: 16px; margin-bottom: 10px; color: #aaa; } .contact-section a { color: #1db954; text-decoration: none; transition: color 0.3s ease; } .contact-section a:hover { color: #fff; } /* Map Section */ .map-section { flex: 1; min-width: 300px; } .map-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .map-section iframe { width: 100%; height: 200px; border: none; border-radius: 5px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); } /* Footer Bottom */ .footer-bottom { border-top: 1px solid #444; padding: 20px 0; margin-top: 20px; font-size: 14px; color: #bbb; } .footer-bottom-content { display: flex; justify-content: space-between; flex-wrap: wrap; } .footer-bottom-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; } .footer-bottom-links li { margin-bottom: 0; } .footer-bottom-links a { color: #bbb; text-decoration: none; transition: color 0.3s ease; } .footer-bottom-links a:hover { color: #1db954; } /* Responsive Styles */ @media (max-width: 768px) { .footer-content { flex-direction: column; align-items: center; } .footer-section { width: 100%; text-align: center; margin-bottom: 20px; } .map-section iframe { height: 150px; } .footer-bottom-content { flex-direction: column; align-items: center; } .footer-bottom-links { flex-direction: column; align-items: center; } } @media (max-width: 480px) { .footer-description, .social-description, .newsletter-section p { font-size: 14px; } .footer-links a { font-size: 14px; } .footer-logo { width: 120px; } .newsletter-form input, .newsletter-form button { font-size: 14px; padding: 8px; } .social-icons a { font-size: 20px; } .map-section iframe { height: 120px; } }