25 lines
406 B
CSS
25 lines
406 B
CSS
body {
|
|
background-color: #11111b;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
|
|
.footer {
|
|
margin: 0;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
background-color: #b4befe;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer > a {
|
|
padding: 10px;
|
|
margin: 5px;
|
|
background-color: #94e2d5;
|
|
border-radius: 5px;
|
|
color: #1e1e2e;
|
|
font-family: "Segoe UI";
|
|
font-size: 20px;
|
|
} |