OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
/
assets
/
css
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/21/2024 10:01:17 AM
rwxr-xr-x
📄
style.css
15.27 KB
08/21/2024 10:01:17 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; } header { background-color: #1e1e1e; /* Darker background for a modern look */ padding: 10px 20px; position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */ transition: background-color 0.3s ease, box-shadow 0.3s ease; } nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; } .logo-img { max-width: 100px; height: auto; display: block; } .nav-links { list-style: none; display: flex; gap: 30px; } .nav-links li { position: relative; } .nav-links a { text-decoration: none; color: #fff; font-weight: 600; font-size: 16px; transition: color 0.3s ease, padding-bottom 0.3s ease; padding-bottom: 5px; /* Adding space below links */ } .nav-links a:hover { color: #1db954; padding-bottom: 10px; /* Underline effect on hover */ } .nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background-color: #1db954; transform: scaleX(0); transition: transform 0.3s ease; } .nav-links a:hover::after { transform: scaleX(1); } .auth-links { display: flex; gap: 15px; } .auth-links a { background-color: transparent; color: #fff; padding: 10px 20px; border: 2px solid #fff; border-radius: 30px; /* Larger rounded buttons */ text-decoration: none; font-weight: 600; transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; font-size: 14px; } .auth-links .login:hover { background-color: #fff; color: #1db954; border-color: #fff; } .auth-links .signup:hover { background-color: #1db954; color: #fff; border-color: #1db954; } .menu-toggle { display: none; /* Hide menu toggle by default */ } /* Media Queries for Mobile Responsiveness */ @media (max-width: 768px) { .nav-links { display: none; /* Hide menu links on small screens */ flex-direction: column; position: absolute; top: 60px; right: 0; background-color: #1e1e1e; width: 100%; gap: 0; } .nav-links.active { display: flex; /* Show menu links when active */ } .menu-toggle { display: block; /* Show menu toggle button on small screens */ font-size: 24px; color: #fff; cursor: pointer; } .auth-links { display: none; /* Hide auth links on small screens */ } } /* Hero Section Styles */ #hero { display: flex; flex-direction: column; align-items: center; padding: 80px 20px; background: linear-gradient(to right, #3a3a3a, #7b7b7b); color: #fff; overflow: hidden; } .hero-content { text-align: center; max-width: 1200px; margin: 0 auto; } .hero-content h2 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; font-weight: 700; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } .hero-content p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 300; } .hero-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; } .btn { padding: 15px 30px; border: none; border-radius: 25px; color: #fff; text-decoration: none; font-size: 1.1rem; text-align: center; transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; } .btn.primary { background-color: #1db954; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); } .btn.primary:hover { background-color: #1aab47; transform: scale(1.05); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); } .btn.secondary { background-color: #ffffff; color: #1db954; border: 2px solid #1db954; } .btn.secondary:hover { background-color: #f4f4f4; border-color: #1db954; transform: scale(1.05); } .hero-info-wrapper { position: relative; overflow: hidden; width: 100%; display: flex; align-items: center; } .hero-info { display: flex; gap: 20px; flex-wrap: nowrap; scroll-behavior: smooth; overflow-x: auto; padding: 20px; padding-bottom: 60px; /* Add space for buttons */ } .info-item { background: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 15px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); flex: 1 0 300px; min-width: 300px; display: flex; flex-direction: column; align-items: center; } .info-item:hover { background-color: rgba(255, 255, 255, 0.2); transform: translateY(-5px); } .info-item h3 { font-size: 1.6rem; margin-bottom: 10px; font-weight: 600; } .info-item p { font-size: 1.1rem; font-weight: 300; text-align: center; } .info-img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .scroll-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.5); color: #fff; border: none; padding: 10px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; z-index: 1; } .scroll-btn.scroll-left { left: 10px; } .scroll-btn.scroll-right { right: 10px; } .scroll-btn:hover { background-color: rgba(0, 0, 0, 0.7); } /* Media Queries for Mobile Responsiveness */ @media (max-width: 768px) { .hero-info { flex-direction: column; align-items: center; } .info-item { min-width: 280px; } .hero-info-wrapper { padding: 10px 0; } } /* 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; } } /* contcat section */ /* Contact Section Styles */ .contact-section { background: linear-gradient(to right, #1e1e1e, #333333); color: #fff; padding: 60px 20px; text-align: center; } .contact-section .container { max-width: 1200px; margin: 0 auto; } .section-title { font-size: 2.5rem; color: #fff; margin-bottom: 20px; font-weight: 700; } .section-tagline { font-size: 1.2rem; color: #ddd; margin-bottom: 20px; font-weight: 300; } .section-description { font-size: 1.1rem; color: #ddd; margin-bottom: 30px; max-width: 800px; margin-left: auto; margin-right: auto; } .contact-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; } .contact-link { display: flex; align-items: center; /* background-color: #1db954; */ color: #fff; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-size: 1.1rem; transition: background-color 0.3s ease, transform 0.3s ease; } .contact-link i { margin-right: 10px; } .contact-link:hover { background-color: #1aab47; transform: scale(1.05); } .additional-info { font-size: 1rem; color: #ddd; } .additional-info a { color: #1db954; text-decoration: none; font-weight: bold; } .additional-info a:hover { text-decoration: underline; } .social-link { color: #1db954; text-decoration: none; font-weight: bold; margin-left: 10px; } .social-link:hover { text-decoration: underline; } /* 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 */ .contact-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .contact-details p { font-size: 16px; margin-bottom: 10px; color: #aaa; } .contact-details a { color: #1db954; text-decoration: none; transition: color 0.3s ease; } .contact-details a:hover { color: #1a9f4a; } /* Map Section */ .map-section h4 { margin-bottom: 15px; font-size: 20px; text-transform: uppercase; } .map-iframe { width: 100%; height: 300px; border: 0; border-radius: 10px; overflow: hidden; } /* Footer Bottom */ .footer-bottom { margin-top: 40px; border-top: 1px solid #333; padding-top: 20px; text-align: center; } .footer-bottom-content { max-width: 800px; margin: 0 auto; } .footer-bottom-links { list-style: none; padding: 0; margin-bottom: 15px; } .footer-bottom-links li { display: inline; margin-right: 15px; } .footer-bottom-links a { color: #aaa; text-decoration: none; transition: color 0.3s ease; } .footer-bottom-links a:hover { color: #1db954; } .footer-bottom p { font-size: 14px; color: #aaa; } /* chatbot css */ /* Chatbot Icon Styles */ /* Ensure that the chatbot is initially hidden */ /* Chatbot Container */ #chatbotContainer { display: none; /* Initially hide the chatbot */ position: fixed; bottom: 20px; right: 20px; width: 350px; height: 500px; background-color: #ffffff; border: 1px solid #ccc; border-radius: 15px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); z-index: 1000; font-family: 'Helvetica Neue', sans-serif; /* Modern font */ } /* Styling for the chatbot icon */ #chatbot-icon { position: fixed; bottom: 20px; right: 20px; background-color: #007bff; color: white; padding: 15px; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); z-index: 1001; } #chatbot-icon:hover { background-color: #0056b3; } /* Add some padding and styling for chatbot content */ #chatbotContainer .chatbot-content { padding: 20px; overflow-y: auto; height: calc(100% - 60px); background-color: #f9f9f9; /* Light background for content */ } /* General message container */ #chatbot-messages { overflow-y: auto; height: 380px; padding: 15px; background-color: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 10px; } /* Styling for user messages */ .message.user { background-color: #007bff; color: white; text-align: right; padding: 12px; border-radius: 20px 20px 0 20px; /* Rounded with tail-like edges */ margin: 10px 0; max-width: 75%; word-wrap: break-word; float: right; clear: both; font-size: 14px; line-height: 1.4; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add subtle shadow */ } /* Styling for bot messages */ .message.bot { background-color: #f1f1f1; color: #333; text-align: left; padding: 12px; border-radius: 20px 20px 20px 0; /* Rounded with tail-like edges */ margin: 10px 0; max-width: 75%; word-wrap: break-word; float: left; clear: both; font-size: 14px; line-height: 1.4; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for modern look */ } /* Chatbot input area */ #chatbot-input { padding: 10px; border: 1px solid #ccc; border-radius: 10px; width: calc(100% - 25px); font-size: 14px; margin-bottom: 10px; background-color: #f9f9f9; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } /* Chatbot send button */ #chatbot-send { background-color: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 10px; cursor: pointer; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); font-size: 14px; } #chatbot-send:hover { background-color: #0056b3; } /* Chatbot Header */ #chatbot-header { background-color: #007bff; color: white; padding: 10px 15px; text-align: center; font-size: 16px; font-weight: bold; border-radius: 15px 15px 0 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }