File manager - Edit - /home/webapp69.cm.in.th/u69319090012/portfolio/style.css
Back
/* ========================================================================== DESIGN SYSTEM & VARIABLES ========================================================================== */ :root { /* Color Palette */ --bg-dark: #070913; --bg-card: rgba(255, 255, 255, 0.03); --border-color: rgba(255, 255, 255, 0.08); --border-hover: rgba(255, 255, 255, 0.18); --text-primary: #f3f4f6; --text-secondary: #9ca3af; --text-muted: #6b7280; /* Neon Accent Colors */ --accent-teal: #00f2fe; --accent-purple: #8a2be2; --accent-pink: #fd79a8; --accent-purple-glow: rgba(138, 43, 226, 0.3); --accent-teal-glow: rgba(0, 242, 254, 0.3); /* Gradients */ --gradient-primary: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%); --gradient-hover: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%); --gradient-glow: linear-gradient(135deg, var(--accent-teal-glow) 0%, var(--accent-purple-glow) 100%); /* Typography */ --font-heading: 'Outfit', sans-serif; --font-body: 'Sarabun', 'Outfit', sans-serif; /* Layout & Spacing */ --max-width: 1200px; --nav-height: 80px; /* Transitions & Shadows */ --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); --transition-fast: all 0.2s ease; --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); --glow-shadow: 0 0 20px rgba(0, 242, 254, 0.5); } /* ========================================================================== RESET & BASE STYLES ========================================================================== */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body.light-theme { --bg-dark: #f8fafc; --bg-card: rgba(255, 255, 255, 0.7); --border-color: rgba(0, 0, 0, 0.08); --border-hover: rgba(0, 0, 0, 0.18); --text-primary: #0f172a; --text-secondary: #475569; --text-muted: #64748b; --accent-teal: #2563eb; --accent-purple: #7c3aed; --accent-pink: #db2777; --glow-shadow: 0 0 20px rgba(37, 99, 235, 0.15); } html { scroll-behavior: smooth; font-size: 16px; } body { background-color: var(--bg-dark); color: var(--text-primary); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; position: relative; min-height: 100vh; transition: background-color 0.3s ease, color 0.3s ease; } a { color: inherit; text-decoration: none; transition: var(--transition-fast); } button, input, textarea { font-family: inherit; } /* Custom Scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-dark); } ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: var(--gradient-primary); } /* ========================================================================== GLOW ORBS (BACKGROUND EFFECTS) ========================================================================== */ .glow-orb { position: absolute; border-radius: 50%; filter: blur(140px); z-index: -1; pointer-events: none; opacity: 0.45; mix-blend-mode: screen; } .orb-1 { top: 5%; right: -10%; width: 45vw; height: 45vw; background: var(--accent-purple); animation: floatOrb 18s infinite alternate; } .orb-2 { top: 40%; left: -15%; width: 50vw; height: 50vw; background: var(--accent-teal); animation: floatOrb 22s infinite alternate-reverse; } .orb-3 { bottom: 5%; right: 10%; width: 35vw; height: 35vw; background: var(--accent-pink); animation: floatOrb 15s infinite alternate; } @keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(4% , 5%) scale(1.1); } } /* ========================================================================== REUSABLE UTILITIES & COMPONENTS ========================================================================== */ .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; } /* Buttons */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-family: var(--font-heading); cursor: pointer; transition: var(--transition-smooth); border: 1px solid transparent; } .btn-primary { background: var(--gradient-primary); color: var(--bg-dark); box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45); background: var(--gradient-hover); color: #fff; } .btn-secondary { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); color: var(--text-primary); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--border-hover); transform: translateY(-3px); } .btn-sm { padding: 8px 18px; font-size: 0.9rem; } .btn-block { display: flex; width: 100%; } /* Badges & Section Headers */ .badge { background: rgba(0, 242, 254, 0.1); border: 1px solid rgba(0, 242, 254, 0.2); color: var(--accent-teal); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; display: inline-block; margin-bottom: 20px; } .section-header { text-align: center; margin-bottom: 60px; } .subtitle { font-family: var(--font-heading); color: var(--accent-teal); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; display: block; margin-bottom: 10px; } .section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; } .title-underline { width: 60px; height: 4px; background: var(--gradient-primary); margin: 15px auto 0; border-radius: 2px; } .gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } /* Glassmorphism General Card */ .glass-panel { background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); border-radius: 20px; box-shadow: var(--card-shadow); } /* ========================================================================== NAVIGATION BAR ========================================================================== */ .navbar-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); display: flex; align-items: center; z-index: 1000; transition: var(--transition-smooth); } .navbar-header.scrolled { height: 70px; background: rgba(7, 9, 19, 0.8); border-bottom: 1px solid var(--border-color); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); } .nav-container { display: flex; justify-content: space-between; align-items: center; } .logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; } .logo-accent { color: var(--accent-teal); font-weight: 900; } .nav-menu { display: flex; align-items: center; gap: 32px; } .nav-link { font-family: var(--font-heading); font-weight: 500; color: var(--text-secondary); font-size: 1rem; position: relative; padding: 8px 0; } .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: var(--transition-smooth); border-radius: 2px; } .nav-link:hover, .nav-link.active { color: #fff; } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .hamburger { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: transparent; border: none; cursor: pointer; z-index: 1001; } .hamburger .bar { width: 100%; height: 2px; background-color: var(--text-primary); transition: var(--transition-fast); border-radius: 2px; } /* Hamburger Active Animation */ .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger.active .bar:nth-child(2) { opacity: 0; } .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } /* ========================================================================== HERO SECTION ========================================================================== */ .hero-section { min-height: 100vh; padding-top: calc(var(--nav-height) + 40px); display: flex; align-items: center; position: relative; } .hero-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; } .hero-content { max-width: 650px; } .hero-title { font-family: var(--font-heading); font-size: 3.8rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 24px; } .hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 550px; } .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; } /* Glass Profile Card */ .hero-image-wrapper { display: flex; justify-content: center; align-items: center; } .profile-card-glass { background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); border-radius: 24px; padding: 30px; width: 320px; box-shadow: var(--card-shadow); transition: var(--transition-smooth); position: relative; overflow: hidden; } .profile-card-glass::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%); pointer-events: none; } .profile-card-glass:hover { transform: translateY(-8px) scale(1.02); border-color: var(--border-hover); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-purple-glow); } .avatar-container { width: 100%; aspect-ratio: 1; border-radius: 18px; overflow: hidden; margin-bottom: 20px; border: 1px solid var(--border-color); } .avatar-image { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); } .profile-card-glass:hover .avatar-image { transform: scale(1.05); } .profile-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; } .profile-title { color: var(--accent-teal); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; } .tech-tags { display: flex; flex-wrap: wrap; gap: 8px; } .tech-tags .tag { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; color: var(--text-secondary); } /* Mouse Scroll Down Indicator */ .scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; } .mouse-icon { width: 26px; height: 44px; border: 2px solid var(--text-muted); border-radius: 15px; display: block; position: relative; } .mouse-icon .wheel { width: 4px; height: 8px; background-color: var(--accent-teal); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollMouse 1.8s infinite; } @keyframes scrollMouse { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 15px); } } /* ========================================================================== ABOUT ME SECTION ========================================================================== */ .about-section { padding: 100px 0; position: relative; } .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; } .about-heading { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; } .about-description { color: var(--text-secondary); margin-bottom: 40px; } /* Stats */ .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; } .stat-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px 15px; text-align: center; backdrop-filter: blur(8px); } .stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; } .stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; } /* Skills Grid */ .skills-grid { display: grid; grid-template-columns: 1fr; gap: 20px; } .skill-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 18px; transition: var(--transition-fast); } .skill-item:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--border-hover); transform: translateX(5px); } .skill-icon { font-size: 1.8rem; color: var(--accent-teal); display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(0, 242, 254, 0.08); border-radius: 10px; } .skill-info { flex-grow: 1; } .skill-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; display: block; margin-bottom: 6px; } .skill-bar { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.08); border-radius: 10px; overflow: hidden; } .skill-progress { height: 100%; background: var(--gradient-primary); border-radius: 10px; } /* ========================================================================== PROJECTS SECTION ========================================================================== */ .projects-section { padding: 100px 0; } .filter-controls { display: flex; justify-content: center; gap: 12px; margin-bottom: 50px; flex-wrap: wrap; } .filter-btn { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); color: var(--text-secondary); padding: 10px 24px; border-radius: 50px; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition-fast); } .filter-btn:hover, .filter-btn.active { background: var(--gradient-primary); color: var(--bg-dark); border-color: transparent; box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2); } .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .project-card { background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden; transition: var(--transition-smooth); display: flex; flex-direction: column; } .project-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 242, 254, 0.15); } .project-img-wrapper { position: relative; width: 100%; aspect-ratio: 1.6; overflow: hidden; border-bottom: 1px solid var(--border-color); } .project-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); } .project-card:hover .project-img { transform: scale(1.06); } .project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(7, 9, 19, 0.85); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-smooth); } .project-card:hover .project-overlay { opacity: 1; } .project-links { display: flex; gap: 16px; } .project-link-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-primary); color: var(--bg-dark); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3); } .project-link-icon:hover { background: var(--gradient-hover); color: #fff; transform: scale(1.1); } .project-details { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; } .project-category { color: var(--accent-teal); font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; } .project-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; } .project-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; flex-grow: 1; } .project-tags { display: flex; flex-wrap: wrap; gap: 8px; } .project-tags span { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.75rem; padding: 4px 10px; border-radius: 6px; font-weight: 500; } /* ========================================================================== CONTACT SECTION ========================================================================== */ .contact-section { padding: 100px 0; } .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; } .contact-heading { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; } .contact-text { color: var(--text-secondary); margin-bottom: 40px; } .contact-details-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; } .contact-item { display: flex; align-items: center; gap: 20px; } .contact-icon { width: 50px; height: 50px; background: rgba(0, 242, 254, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--accent-teal); border: 1px solid rgba(0, 242, 254, 0.15); } .contact-content { display: flex; flex-direction: column; } .contact-label { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; } .contact-link, .contact-value { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; } .contact-link:hover { color: var(--accent-teal); } /* Social icons under Contact Info */ .social-links { display: flex; gap: 16px; } .social-icon { width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 1.1rem; } .social-icon:hover { border-color: var(--accent-teal); color: var(--accent-teal); transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15); } /* Contact Form */ .contact-form-column { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } .form-group { margin-bottom: 24px; } .form-label { display: block; color: var(--text-secondary); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; } .form-input { width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); border-radius: 12px; padding: 14px 18px; color: var(--text-primary); font-size: 0.95rem; transition: var(--transition-fast); } .form-input:focus { outline: none; border-color: var(--accent-teal); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 15px rgba(0, 242, 254, 0.1); } .form-textarea { min-height: 120px; resize: vertical; } /* ========================================================================== FOOTER ========================================================================== */ .footer-wrapper { border-top: 1px solid var(--border-color); padding: 40px 0; background: rgba(5, 7, 15, 0.9); } .footer-container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--text-secondary); font-size: 0.9rem; } .footer-designer i { animation: heartBeat 1.5s infinite; display: inline-block; } @keyframes heartBeat { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } } /* ========================================================================== TOAST NOTIFICATION ========================================================================== */ .toast { position: fixed; bottom: 30px; right: -400px; background: rgba(10, 25, 20, 0.8); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(0, 242, 254, 0.3); padding: 20px 24px; border-radius: 16px; box-shadow: var(--card-shadow); z-index: 2000; transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-width: 360px; } .toast.show { right: 30px; } .toast-content { display: flex; align-items: flex-start; gap: 16px; } .toast-icon { font-size: 1.8rem; color: var(--accent-teal); margin-top: 2px; } .toast-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; } .toast-desc { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.4; } /* ========================================================================== SCROLL REVEAL ANIMATION CLASSES ========================================================================== */ .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); } .reveal.revealed { opacity: 1; transform: translateY(0); } /* ========================================================================== RESPONSIVE DESIGN (MOBILE-FIRST APPROACH & MEDIA QUERIES) ========================================================================== */ /* Tablet Layout (Max-Width: 1024px) */ @media screen and (max-width: 1024px) { .hero-container { grid-template-columns: 1fr; gap: 50px; text-align: center; } .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; } .hero-actions { justify-content: center; } .hero-title { font-size: 3.2rem; } .about-grid { grid-template-columns: 1fr; gap: 50px; } .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } .contact-grid { grid-template-columns: 1fr; gap: 50px; } } /* Mobile Layout (Max-Width: 768px) */ @media screen and (max-width: 768px) { :root { --nav-height: 70px; } .section-title { font-size: 2rem; } .hero-title { font-size: 2.5rem; } .hero-subtitle { font-size: 1rem; } /* Mobile Navigation Drawer */ .hamburger { display: flex; } .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: rgba(7, 9, 19, 0.95); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-left: 1px solid var(--border-color); flex-direction: column; justify-content: center; align-items: center; gap: 40px; transition: var(--transition-smooth); z-index: 1000; } .nav-menu.active { right: 0; } .nav-link { font-size: 1.2rem; } .projects-grid { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: 1fr; gap: 12px; } .contact-form-column { padding: 24px; } .footer-container { flex-direction: column; text-align: center; } } /* Small Screens (Max-Width: 480px) */ @media screen and (max-width: 480px) { .hero-title { font-size: 2.1rem; } .hero-actions { width: 100%; } .btn { width: 100%; } .profile-card-glass { width: 100%; } } /* ========================================================================== BOTTOM NAVIGATION BAR (Floating & Mobile) ========================================================================== */ .bottom-nav { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); width: calc(100% - 48px); max-width: 440px; height: 66px; background: rgba(7, 9, 19, 0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); border-radius: 50px; display: none; justify-content: space-around; align-items: center; padding: 0 16px; z-index: 1500; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1); transition: var(--transition-smooth); } .bottom-nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; font-size: 0.7rem; font-weight: 500; transition: var(--transition-smooth); gap: 4px; padding: 6px 12px; border-radius: 12px; min-width: 65px; } .bottom-nav-item i { font-size: 1.15rem; transition: var(--transition-smooth); } .bottom-nav-item:hover, .bottom-nav-item.active { color: var(--accent-teal); } .bottom-nav-item.active i { transform: translateY(-2px); text-shadow: 0 0 10px rgba(0, 242, 254, 0.5); } .floating-contact-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--gradient-primary); color: var(--bg-dark); border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: var(--glow-shadow); transition: var(--transition-smooth); z-index: 1500; border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; } .floating-contact-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 25px rgba(0, 242, 254, 0.6); color: var(--bg-dark); } /* Theme Toggle Button */ .theme-toggle-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--bg-card); backdrop-filter: var(--transition-smooth); -webkit-backdrop-filter: var(--transition-smooth); color: var(--text-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); transition: var(--transition-smooth); z-index: 1500; border: 1px solid var(--border-color); cursor: pointer; } .theme-toggle-btn:hover { transform: scale(1.08) translateY(-2px); border-color: var(--accent-teal); } @media screen and (max-width: 768px) { .bottom-nav { display: flex; } .floating-contact-btn { display: flex; bottom: 100px; } .theme-toggle-btn { bottom: 170px; /* Float above phone button on mobile */ } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.35 |
proxy
|
phpinfo
|
Settings