/
grafula
/
javascript
Обзор
Документация
Войти
/
grafula
/
javascript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
landing/style.css
447 строк
7 KB
Dar
Initial commit
19 дек 2025, 04:20
19 дек 2025, 04:20
a579753
Код
Авторство
О чём код?
/* ===== БАЗОВЫЕ СТИЛИ ===== */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; padding: 20px; min-height: 100vh; } .resume-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 40px; background: white; border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); } /* ===== ЛЕВАЯ КОЛОНКА ===== */ .left-column { flex: 1; display: flex; flex-direction: column; gap: 40px; } /* Приветствие */ .greeting-section { padding-bottom: 30px; border-bottom: 2px solid #f0f0f0; } .greeting-text { font-size: 16px; color: #666; margin-bottom: 10px; font-weight: 500; } .name { font-size: 36px; font-weight: 700; color: #2d3436; margin-bottom: 5px; line-height: 1.2; } .title { font-size: 20px; color: #4a6cf7; font-weight: 600; } /* Общие стили секций */ .section { padding-bottom: 30px; border-bottom: 1px solid #f0f0f0; } .section:last-child { border-bottom: none; padding-bottom: 0; } .section-title { font-size: 20px; font-weight: 700; color: #2d3436; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid #4a6cf7; display: inline-block; } /* Языки */ .languages-list { display: flex; flex-direction: column; gap: 20px; } .language-item { display: flex; justify-content: space-between; align-items: center; } .language-name { font-size: 16px; font-weight: 500; color: #333; } .language-level { display: flex; gap: 6px; } .level-dot { width: 12px; height: 12px; border-radius: 50%; background-color: #e0e0e0; } .level-dot.filled { background-color: #4a6cf7; } /* Инструменты */ .tools-list { display: flex; flex-direction: column; gap: 20px; } .tool-item { display: flex; justify-content: space-between; align-items: center; } .tool-name { font-size: 16px; font-weight: 500; color: #333; min-width: 100px; } .tool-progress { flex: 1; max-width: 200px; height: 8px; background-color: #e9ecef; border-radius: 4px; overflow: hidden; } .progress-bar { height: 100%; background: linear-gradient(90deg, #4a6cf7, #6a8cff); border-radius: 4px; transition: width 1s ease-in-out; } /* Интересы */ .interests-tags { display: flex; flex-wrap: wrap; gap: 10px; } .interest-tag { background-color: #f0f4ff; color: #4a6cf7; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; transition: all 0.3s ease; cursor: default; } .interest-tag:hover { background-color: #4a6cf7; color: white; transform: translateY(-2px); } /* ===== ПРАВАЯ КОЛОНКА ===== */ .right-column { flex: 2; display: flex; flex-direction: column; gap: 40px; } /* Опыт работы */ .experience-section { display: flex; flex-direction: column; gap: 30px; } .experience-item { position: relative; padding-left: 20px; } .experience-item::before { content: ''; position: absolute; left: 0; top: 0; width: 2px; height: 100%; background-color: #4a6cf7; } .experience-period { font-size: 14px; color: #4a6cf7; font-weight: 600; margin-bottom: 8px; } .experience-title { font-size: 18px; font-weight: 700; color: #2d3436; margin-bottom: 5px; } .experience-subtitle { font-size: 16px; color: #666; font-weight: 500; margin-bottom: 15px; } .experience-description { list-style-type: none; padding-left: 0; } .experience-description li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 15px; color: #555; line-height: 1.5; } .experience-description li::before { content: '•'; position: absolute; left: 0; color: #4a6cf7; font-size: 20px; } /* Образование */ .education-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; } .education-card { background-color: #f8f9fa; border-radius: 12px; padding: 20px; border: 1px solid #e9ecef; transition: all 0.3s ease; } .education-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .education-year { display: inline-block; background-color: rgba(74, 108, 247, 0.1); color: #4a6cf7; padding: 4px 12px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 15px; } .education-title { font-size: 18px; font-weight: 700; color: #2d3436; margin-bottom: 5px; } .education-institution { font-size: 16px; color: #666; font-weight: 500; margin-bottom: 15px; } .education-tags { display: flex; flex-wrap: wrap; gap: 8px; } .tag { background-color: white; color: #4a6cf7; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1px solid #e0e0e0; } /* Контакты */ .contact-card { background: linear-gradient(135deg, #2d3436, #1a1a1a); color: white; border-radius: 16px; padding: 30px; text-align: center; } .contact-title { font-size: 22px; font-weight: 700; margin-bottom: 25px; line-height: 1.4; } .email-button { display: inline-flex; align-items: center; gap: 12px; background-color: #4a6cf7; color: white; padding: 15px 30px; border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none; margin-bottom: 25px; transition: all 0.3s ease; } .email-button:hover { background-color: #3a5ce5; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3); } .email-button i { font-size: 18px; } .social-icons { display: flex; justify-content: center; gap: 20px; } .social-icon { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; color: white; font-size: 18px; transition: all 0.3s ease; } .social-icon:hover { background-color: #4a6cf7; transform: translateY(-3px); } /* ===== АДАПТИВНОСТЬ ===== */ @media (max-width: 992px) { .resume-container { flex-direction: column; gap: 30px; padding: 30px; } .left-column, .right-column { width: 100%; } .education-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } } @media (max-width: 768px) { .resume-container { padding: 20px; } .name { font-size: 30px; } .title { font-size: 18px; } .education-grid { grid-template-columns: 1fr; } .contact-title { font-size: 20px; } .email-button { padding: 12px 24px; font-size: 15px; } } @media (max-width: 480px) { .resume-container { padding: 15px; } .language-item, .tool-item { flex-direction: column; align-items: flex-start; gap: 10px; } .tool-progress { max-width: 100%; width: 100%; } .social-icons { gap: 15px; } .social-icon { width: 40px; height: 40px; font-size: 16px; } }