Files
personal-website/public/styles.css
T
2026-04-24 02:07:08 +02:00

85 lines
931 B
CSS

body {
text-align: center;
background-color: #221826;
}
h1,
h2,
h3,
h4,
h5,
p {
color: #DDDDEE
}
a {
color: #DD7FB6;
text-decoration: none
}
#navbar {
position: sticky;
top: 0;
overflow: hidden;
display: block;
}
#navbar a {
padding: 5px;
display: inline-block;
font-size: larger;
}
#language {
position: fixed;
bottom: 0;
right: 0;
float: right;
padding: 15px;
font-size: larger;
}
#sidebar {
position: fixed;
top: 0;
right: 0;
overflow: hidden;
flex-direction: column;
display: flex;
float: right;
padding: 15px;
}
#sidebar a {
float: right;
display: block;
text-align: end;
padding: 5px;
text-decoration: none;
font-size: larger;
}
a:hover {
color: #D0A7DF
}
iframe {
border: none;
overflow: hidden
}
#nowplayingwidget {
position: fixed;
bottom: 15px;
left: 15px;
float: left;
}
/*colors:
#221826
#51324A
#804C6E
#DD7FB6
#D0A7DF
#DDDDEE
*/