Files
StreamCore_IP/page4.css
2025-05-21 12:54:40 +04:00

260 lines
5.0 KiB
CSS

* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Orbitron', sans-serif;
background-color: #0d0d0d;
color: #ddd;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
background: #000000;
padding: 1rem 2rem;
border-bottom: 2px solid #ff00ff;
position: sticky;
top: 0;
z-index: 2000;
}
.logo {
font-size: 1.6rem;
color: #00ffff;
user-select: none;
}
.nav-toggle {
display: none;
}
.burger-menu {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
position: fixed;
top: 18px;
right: 20px;
z-index: 2100;
}
.burger-menu span {
width: 28px;
height: 3px;
background: #ff00ff;
border-radius: 2px;
box-shadow: 0 0 8px #ff00ff;
transition: 0.3s;
}
.navbar {
display: flex;
}
.nav-links {
list-style: none;
display: flex;
gap: 2rem;
margin: 0;
padding: 0;
}
.nav-links li a {
color: #ff00ff;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
user-select: none;
text-shadow: none;
}
.nav-links li a:hover,
.nav-links li a:focus {
color: #00ffff;
text-shadow: none;
}
.page {
padding: 4rem 2rem;
border-bottom: 1px solid #222;
}
.page h1,
.page h2 {
color: #ff00ff;
text-shadow: none;
}
.page p {
max-width: 800px;
line-height: 1.6;
color: #aaa;
}
.footer {
background: #111;
border-top: 3px solid #00ffff;
padding: 2rem 1rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
color: #00ffff;
text-shadow: none;
}
.footer-info p {
margin: 0.4rem 0;
font-weight: 600;
}
.social-icons {
margin-top: 1rem;
display: flex;
gap: 1.5rem;
}
.social-icons a i {
color: #ff00ff;
transition: color 0.3s ease;
}
@media (max-width: 768px) {
.nav-links {
position: fixed;
top: 60px;
right: 0;
background: #111;
width: 100%;
max-height: 0;
overflow: hidden;
flex-direction: column;
padding: 0 2rem;
transition: max-height 0.35s ease;
box-shadow: 0 10px 30px #ff00ffaa;
border-bottom: 2px solid #ff00ff;
z-index: 2000;
user-select: none;
border-radius: 0 0 10px 10px;
}
.nav-toggle:checked ~ .navbar .nav-links {
max-height: 300px;
}
.burger-menu {
display: flex;
}
.nav-links li a {
color: #ff66ff;
padding: 1rem 0;
border-bottom: 1px solid #ff00ff33;
text-shadow: none;
}
.nav-links li a:hover,
.nav-links li a:focus {
color: #33ffff;
text-shadow: none;
}
}
.profile-container {
background: #111;
border: 2px solid #ff00ff;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 0 12px #ff00ff88;
transition: box-shadow 0.3s ease;
user-select: none;
}
.profile-avatar img {
border-radius: 50%;
border: 3px solid #00ffff;
width: 150px;
height: 150px;
object-fit: cover;
box-shadow: 0 0 12px #00ffffaa;
}
.profile-info {
flex: 1 1 300px;
color: #eee;
}
.profile-info h2 span {
color: #ff00ff;
text-shadow: none;
}
.profile-info p {
font-size: 1.1rem;
margin: 0.5rem 0;
}
.btn-edit-profile {
margin-top: 1rem;
background-color: #ff00ff;
border: none;
padding: 0.7rem 1.4rem;
font-weight: 700;
color: #111;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0 12px #ff00ff;
transition: background-color 0.3s ease;
}
.btn-edit-profile:hover {
background-color: #00ffff;
box-shadow: 0 0 16px #00ffff;
color: #000;
}
.profile-settings {
margin-top: 3rem;
background-color: #111;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 0 20px #00ffff88;
color: #eee;
}
.profile-settings h2 {
color: #00ffff;
text-shadow: none;
margin-bottom: 1rem;
}
form label {
display: block;
margin-top: 1rem;
font-weight: 600;
color: #ff00ff;
text-shadow: none;
}
form select {
width: 100%;
padding: 0.5rem;
border-radius: 8px;
border: 2px solid #ff00ff;
background-color: #222;
color: #eee;
box-shadow: 0 0 10px #ff00ff88 inset;
margin-top: 0.3rem;
font-weight: 500;
}
.btn-save-settings {
margin-top: 2rem;
background-color: #00ffff;
border: none;
padding: 0.7rem 1.4rem;
font-weight: 700;
color: #111;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0 16px #00ffff;
transition: background-color 0.3s ease;
}
.btn-save-settings:hover {
background-color: #ff00ff;
box-shadow: 0 0 20px #ff00ff;
color: #000;
}
@media (max-width: 600px) {
.profile-container {
flex-direction: column;
align-items: center;
}
.profile-info {
text-align: center;
}
}