72 lines
1.0 KiB
CSS
72 lines
1.0 KiB
CSS
/* Common styles for all pages */
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
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;
|
|
}
|
|
|
|
.pfp {
|
|
border-radius: 50px;
|
|
overflow: hidden;
|
|
width: 50px !important;
|
|
height: 50px !important;
|
|
}
|
|
|
|
.pfp img {
|
|
width: 50px !important;
|
|
height: 50px !important;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
|
|
|
|
.pfp i {
|
|
width: 50px !important;
|
|
height: 50px !important;
|
|
border-radius: 50px;
|
|
font-size: 50px;
|
|
}
|
|
|
|
|
|
nav {
|
|
color: aliceblue;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
nav ul li {
|
|
list-style: none;
|
|
display: flex;
|
|
color: aliceblue;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 95px !important;
|
|
height: 50px !important;
|
|
text-align: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
nav ul li a {
|
|
color: aliceblue;
|
|
text-decoration: none;
|
|
margin: auto 0;
|
|
padding: 0;
|
|
} |