35 lines
637 B
CSS
35 lines
637 B
CSS
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Rubik', sans-serif;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Rubik';
|
|
src: url('../assets/Rubik-Medium.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
.primary {
|
|
background-color: #ffcc66;
|
|
border: none;
|
|
padding: 5px 10px;
|
|
cursor: pointer;
|
|
font-family: 'Rubik', sans-serif;
|
|
}
|
|
|
|
.primary:hover {
|
|
background-color: #ffb92d;
|
|
} |