46 lines
597 B
CSS
46 lines
597 B
CSS
body {
|
|
text-align: center;
|
|
background-color: rgb(045, 045, 045);
|
|
font-family: "JetBrains Mono", monospace;
|
|
}
|
|
|
|
h1 {
|
|
color: #ffb6fa;
|
|
}
|
|
|
|
h3 {
|
|
color: white;
|
|
}
|
|
|
|
footer {
|
|
font-size: 15px;
|
|
color: rgb(180, 180, 180);
|
|
bottom: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
img {
|
|
height: 100px;
|
|
width: 100px;
|
|
margin: 10px;
|
|
border-color: #ffb6fa;
|
|
border-style: solid;
|
|
border-width: 4px;
|
|
border-radius: 100px;
|
|
}
|
|
|
|
.mainlinks {
|
|
font-size: 25px;
|
|
color: #ffb6fa;
|
|
}
|
|
|
|
.source {
|
|
color: rgb(155, 214, 255);
|
|
}
|
|
|
|
.diver {
|
|
padding-bottom: 20px;
|
|
}
|
|
|