Files
WeatherTool/web/src/css/index.css
T

35 lines
637 B
CSS
Raw Normal View History

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