p5.js-web-editor/styles/base/_base.scss

26 lines
355 B
SCSS
Raw Normal View History

* {
box-sizing: border-box;
}
2016-05-11 04:22:32 +02:00
html {
font-size: #{$base-font-size}px;
}
2016-06-10 04:15:50 +02:00
body {
font-family: Montserrat, sans-serif;
color: $light-primary-text-color;
}
2016-05-18 19:37:59 +02:00
.root-app, .app {
2016-05-11 04:22:32 +02:00
min-height: 100%;
height: 100%;
2016-06-10 04:15:50 +02:00
}
a {
text-decoration: none;
color: $light-secondary-text-color;
&:hover {
text-decoration: none;
color: $light-primary-text-color;
}
2016-05-11 04:22:32 +02:00
}