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;
|
2024-01-25 20:53:53 +01:00
|
|
|
/*background: radial-gradient(#1b2329, #161c21);*/
|
2024-01-20 17:52:25 +01:00
|
|
|
color: aliceblue;
|
|
|
|
}
|
|
|
|
|
2024-01-25 20:29:52 +01:00
|
|
|
h2, h1 {
|
2024-01-20 17:52:25 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-01-25 20:29:52 +01:00
|
|
|
.e404 {
|
|
|
|
font-size: 4.5rem;
|
|
|
|
}
|
|
|
|
|
2024-01-20 17:52:25 +01:00
|
|
|
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:13:45 +01:00
|
|
|
overflow: hidden;
|
2024-01-25 13:29:52 +01:00
|
|
|
width: 50px !important;
|
|
|
|
height: 50px !important;
|
2024-01-24 15:32:15 +01:00
|
|
|
}
|
2024-01-25 13:08:57 +01:00
|
|
|
|
2024-01-25 13:12:23 +01:00
|
|
|
.pfp img {
|
2024-01-25 13:13:45 +01:00
|
|
|
width: 50px !important;
|
|
|
|
height: 50px !important;
|
|
|
|
border-radius: 50px;
|
2024-01-25 13:12:23 +01:00
|
|
|
}
|
|
|
|
|
2024-01-25 13:08:57 +01:00
|
|
|
|
2024-01-25 15:08:40 +01:00
|
|
|
|
|
|
|
.pfp i {
|
|
|
|
width: 50px !important;
|
|
|
|
height: 50px !important;
|
|
|
|
border-radius: 50px;
|
2024-01-25 15:09:57 +01:00
|
|
|
font-size: 50px;
|
2024-01-25 15:08:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-01-25 13:08:57 +01:00
|
|
|
nav {
|
|
|
|
color: aliceblue;
|
2024-01-25 20:51:04 +01:00
|
|
|
padding: 28px 0;
|
|
|
|
margin: 0;
|
2024-01-25 20:51:59 +01:00
|
|
|
background-color: rgba(0, 0, 0, 0.12);
|
|
|
|
-webkit-box-shadow: 0 20px 28px 0 rgba(0,0,0,0.12);
|
|
|
|
-moz-box-shadow: 0 20px 28px 0 rgba(0,0,0,0.12);
|
|
|
|
box-shadow: 0 20px 28px 0 rgba(0,0,0,0.12);
|
2024-01-25 16:10:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
2024-01-25 16:09:03 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2024-01-25 16:14:13 +01:00
|
|
|
padding: 0;
|
|
|
|
font-size: 32px;
|
2024-01-25 20:50:37 +01:00
|
|
|
margin: 0;
|
2024-01-25 13:08:57 +01:00
|
|
|
}
|
|
|
|
|
2024-01-25 16:12:59 +01:00
|
|
|
|
|
|
|
nav ul .links {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-01-25 16:14:13 +01:00
|
|
|
font-size: 20px;
|
2024-01-25 20:40:16 +01:00
|
|
|
gap: 2.5rem;
|
2024-01-25 16:12:59 +01:00
|
|
|
}
|
|
|
|
|
2024-01-25 13:08:57 +01:00
|
|
|
nav ul li {
|
|
|
|
list-style: none;
|
2024-01-25 13:28:50 +01:00
|
|
|
display: flex;
|
2024-01-25 13:08:57 +01:00
|
|
|
color: aliceblue;
|
2024-01-25 13:10:55 +01:00
|
|
|
margin: 0;
|
2024-01-25 13:26:37 +01:00
|
|
|
padding: 0;
|
2024-01-25 20:29:52 +01:00
|
|
|
width: 100px !important;
|
2024-01-25 13:22:31 +01:00
|
|
|
height: 50px !important;
|
2024-01-25 13:25:26 +01:00
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-01-25 13:08:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li a {
|
|
|
|
color: aliceblue;
|
|
|
|
text-decoration: none;
|
2024-01-25 13:27:30 +01:00
|
|
|
margin: auto 0;
|
2024-01-25 13:10:55 +01:00
|
|
|
padding: 0;
|
2024-01-28 19:57:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto auto;
|
2024-01-25 13:08:57 +01:00
|
|
|
}
|