candifloss_site/css/index.css

73 lines
1.3 KiB
CSS
Raw Normal View History

2024-12-11 11:11:06 +00:00
* {
all: unset;
2024-12-10 22:03:11 +00:00
margin: 0;
padding: 0;
2024-12-11 11:11:06 +00:00
border: 0;
box-sizing: border-box;
}
title, script {
display: none;
}
body {
2024-12-10 22:03:11 +00:00
font-family: Arial, sans-serif;
2024-12-11 11:11:06 +00:00
background: linear-gradient(135deg, #1c1c2b, #30284d);
color: #d4d4dc;
2024-12-10 22:03:11 +00:00
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
2024-12-11 11:11:06 +00:00
margin: 0;
font-family: "IosevkaTermSlab NerdFont Mono";
2024-12-10 22:03:11 +00:00
}
2024-12-11 11:11:06 +00:00
body .container {
2024-12-10 22:03:11 +00:00
text-align: center;
}
2024-12-11 11:11:06 +00:00
body .container h1 {
font-size: 7rem;
2024-12-10 22:03:11 +00:00
margin: 0;
padding: 0.5em;
2024-12-11 11:11:06 +00:00
transition: text-shadow 0.3s;
}
body .container h1:hover {
text-shadow: #a498ce 0px 0px 9px;
}
body .container nav {
display: block;
padding: 0.2rem;
2024-12-10 22:03:11 +00:00
}
2024-12-11 11:11:06 +00:00
body .container nav ul {
2024-12-10 22:03:11 +00:00
list-style: none;
padding: 0;
2024-12-11 11:11:06 +00:00
margin: 0;
2024-12-10 22:03:11 +00:00
display: flex;
justify-content: center;
2024-12-11 11:11:06 +00:00
gap: 1rem;
padding: 0.7rem;
2024-12-10 22:03:11 +00:00
}
2024-12-11 11:11:06 +00:00
body .container nav ul li a {
2024-12-10 22:03:11 +00:00
text-decoration: none;
2024-12-11 11:11:06 +00:00
color: #d4d4dc;
font-size: 1.5rem;
2024-12-10 22:03:11 +00:00
transition: color 0.3s;
2024-12-11 11:11:06 +00:00
background-color: #2f2f3e;
padding: 0.5rem 2rem;
}
body .container nav ul li a:hover {
color: #a498ce;
background-color: #3d3d50;
2024-12-10 22:03:11 +00:00
}
2024-12-11 11:11:06 +00:00
body footer {
width: 100%;
text-align: center;
padding: 1rem;
background-color: rgba(0, 0, 0, 0);
color: #d4d4dc;
font-size: 1rem;
position: fixed;
bottom: 0;
left: 0;
text-shadow: 0 0 3px #000;
2024-12-10 22:03:11 +00:00
}