29 lines
432 B
CSS
29 lines
432 B
CSS
@font-face {
|
|
font-family: "Roboto";
|
|
src: url("../fonts/Roboto-Regular.ttf") format("truetype");
|
|
} /* Safari, Android, iOS */
|
|
|
|
html,
|
|
body {
|
|
font-family: "Roboto" !important;
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.pagination {
|
|
margin-right: 1ch;
|
|
text-align: center;
|
|
}
|
|
|
|
.pagination ul > li {
|
|
list-style: none;
|
|
display: inline-block;
|
|
padding-left: 1ch;
|
|
}
|