2024-01-20 17:52:25 +01:00
|
|
|
/* Common styles for all pages */
|
|
|
|
body {
|
2024-01-25 12:34:30 +01:00
|
|
|
font-family: 'Poppins', sans-serif;
|
2024-01-20 17:52:25 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #161c21;
|
|
|
|
color: aliceblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
max-width: 300px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-01-23 11:03:46 +01:00
|
|
|
|
|
|
|
.pfp {
|
|
|
|
border-radius: 50px;
|
2024-01-25 13:09:53 +01:00
|
|
|
max-width: fit-content;
|
2024-01-25 13:10:55 +01:00
|
|
|
max-height: fit-content;
|
2024-01-24 15:32:15 +01:00
|
|
|
}
|
2024-01-25 13:08:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
nav {
|
|
|
|
color: aliceblue;
|
2024-01-25 13:10:55 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-01-25 13:08:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
list-style: none;
|
|
|
|
color: aliceblue;
|
2024-01-25 13:10:55 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-01-25 13:08:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li a {
|
|
|
|
color: aliceblue;
|
|
|
|
text-decoration: none;
|
2024-01-25 13:10:55 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-01-25 13:08:57 +01:00
|
|
|
}
|