Farmbot-Web-App/frontend/css/fonts.scss

33 lines
453 B
SCSS
Raw Permalink Normal View History

2017-06-29 12:54:02 -06:00
// Google Fonts
2018-09-13 14:26:53 -06:00
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic,100,100italic");
@import "colors";
2017-06-29 12:54:02 -06:00
// Font Variables
$roboto: 'Roboto',
Arial,
Helvetica,
sans-serif;
body,
html {
2018-09-13 14:26:53 -06:00
font-family: $roboto;
font-weight: 400;
2017-06-29 12:54:02 -06:00
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
fieldset {
2018-09-13 14:26:53 -06:00
font-family: $roboto;
font-weight: 400;
2017-06-29 12:54:02 -06:00
}
p {
2018-09-13 14:26:53 -06:00
font-size: 1.1rem;
color: $dark_gray;
line-height: 1.4rem;
margin-bottom: 0 !important;
}