36 lines
476 B
CSS
36 lines
476 B
CSS
body {
|
|
position: relative;
|
|
background-color: DarkSlateBlue;
|
|
color: white;
|
|
font-family: Arial;
|
|
font-size: 400%;
|
|
}
|
|
|
|
.center {
|
|
position: absolute;
|
|
top: 50%;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.bottom {
|
|
background-color: black;
|
|
position: fixed;
|
|
width: 100%;
|
|
bottom: 0;
|
|
font-size: 30px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.laligned {
|
|
left: 0px;
|
|
}
|
|
|
|
.raligned {
|
|
right: 0px;
|
|
text-align: right;
|
|
}
|
|
|
|
.small {
|
|
font-size: 14px;
|
|
} |