53 lines
652 B
CSS
Executable File
53 lines
652 B
CSS
Executable File
<style>
|
|
|
|
#navbar #currentpage a {
|
|
background-color: black;
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.catcher {
|
|
position: relative;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.bottom-left {
|
|
position: absolute;
|
|
bottom: 8px;
|
|
left: 16px;
|
|
}
|
|
|
|
.top-left {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 16px;
|
|
}
|
|
|
|
.top-right {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 16px;
|
|
}
|
|
|
|
.bottom-right {
|
|
position: absolute;
|
|
bottom: 8px;
|
|
right: 16px;
|
|
}
|
|
|
|
.bottom-centered {
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.centered {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
</style>
|