25 lines
561 B
CSS
25 lines
561 B
CSS
/* Root stylesheet. Load into your Zmpl template with:
|
|
*
|
|
* <link rel="stylesheet" href="/styles.css" />
|
|
*
|
|
*/
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
|
|
|
.title {
|
|
font-family: 'Roboto';
|
|
font-size: 3rem;
|
|
font-weight: 500;
|
|
margin-left: 20px;
|
|
margin-right: 40px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.header-link{
|
|
font-family: 'Roboto';
|
|
font-size: 1.5rem;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#replaceMe{
|
|
font-family:'Courier New';
|
|
}
|