colours.dalfuss.link/css/custom.css

72 lines
889 B
CSS
Raw Normal View History

2024-12-23 00:30:27 +00:00
body {
text-align: center;
}
.palette {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 40px;
}
.color {
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
color: white;
border-radius: 10px;
margin: 10px;
}
2024-12-23 17:54:57 +00:00
.light {
2024-12-23 00:30:27 +00:00
color: black;
}
a {
2024-12-23 17:54:57 +00:00
color: #F5A9B8;
2024-12-23 00:30:27 +00:00
text-decoration: none;
transition: color 0.3s;
}
a:hover {
2024-12-23 17:54:57 +00:00
color: #5BCEFA;
}
a:visited {
color: #5BCEFA;
2024-12-23 00:30:27 +00:00
}
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: #040404;
color: white;
border-radius: 10px;
border-color: #fff;
z-index: 1000;
}
.logo {
width: 10vw;
margin: 0 auto;
display: block;
}
.fa-link {
color: #545454;
}
2024-12-23 17:54:57 +00:00
.jax {
color: #a8c5db;
}
.aidan {
color: #216240;
2025-01-03 23:37:59 +00:00
}