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

40 lines
574 B
SCSS
Raw Normal View History

* {
box-sizing: border-box;
}
2016-06-14 03:07:00 +02:00
html, body {
2016-05-11 04:22:32 +02:00
font-size: #{$base-font-size}px;
}
2016-06-14 03:07:00 +02:00
body, input, button {
2016-06-10 04:15:50 +02:00
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-06-14 03:07:00 +02:00
}
input, button {
font-size: 1rem;
}
input {
padding: #{5 / $base-font-size}rem;
border-radius: 2px;
border: 1px solid $input-border-color;
}
button, input[type="submit"] {
@extend %button;
2016-05-11 04:22:32 +02:00
}