mirror of
https://github.com/Alvin-Zilverstand/school.git
synced 2026-03-06 11:16:54 +01:00
137 lines
2.6 KiB
CSS
137 lines
2.6 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Segoe UI', Arial, sans-serif;
|
|
background-color: #FEFCE8;
|
|
color: #1F2937;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 945px;
|
|
transition: background-color 0.5s, color 0.5s;
|
|
}
|
|
|
|
body.dark-mode {
|
|
background-color: #0F172A;
|
|
color: #F8FAFC;
|
|
}
|
|
|
|
header {
|
|
position: relative;
|
|
background: linear-gradient(to top, #FFB347, #FF7E5F);
|
|
color: white;
|
|
padding: 90px 15px 150px 15px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
transition: background-color 0.5s;
|
|
}
|
|
|
|
body.dark-mode header {
|
|
background: linear-gradient(to top, #1E3A8A, #0F172A);
|
|
}
|
|
|
|
.mountains {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 1920px;
|
|
height: 150px;
|
|
background: linear-gradient(to top, #223C89 0%, transparent 100%);
|
|
clip-path: polygon(
|
|
0% 100%, 10% 60%, 20% 85%, 30% 50%, 40% 80%,
|
|
50% 40%, 60% 75%, 70% 45%, 80% 70%, 90% 50%, 100% 100%
|
|
);
|
|
}
|
|
|
|
.dark-mode .mountains {
|
|
background: linear-gradient(to top, #1E0A4A 0%, transparent 100%);
|
|
}
|
|
|
|
header h1,
|
|
header p,
|
|
header nav {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
header h1 a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
header h1 a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
nav ul {
|
|
list-style: none;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
nav li {
|
|
margin: 0 15px;
|
|
}
|
|
|
|
nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
nav a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.dark-toggle {
|
|
position: fixed;
|
|
top: 15px;
|
|
right: 15px;
|
|
color: #1E3A8A;
|
|
border: none;
|
|
cursor: pointer;
|
|
z-index: 999;
|
|
background: transparent;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.dark-toggle::before {
|
|
content: "🌙";
|
|
}
|
|
|
|
.dark-mode .dark-toggle::before {
|
|
content: "☀️";
|
|
}
|
|
.dark-mode .dark-toggle {
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
flex: 1;
|
|
max-width: 960px;
|
|
margin: 30px auto;
|
|
padding: 23px;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.05);
|
|
width: 1000px;
|
|
transition: background-color 0.5s;
|
|
}
|
|
|
|
body.dark-mode main {
|
|
background-color: #1E293B;
|
|
}
|
|
|
|
footer {
|
|
background-color: #1E3A8A;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 15px;
|
|
} |