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

64 lines
858 B
SCSS
Raw Normal View History

* {
box-sizing: border-box;
}
2016-06-14 01:07:00 +00:00
html, body {
2016-05-11 02:22:32 +00:00
font-size: #{$base-font-size}px;
}
2016-06-14 01:07:00 +00:00
body, input, button {
2016-08-18 18:22:47 +00:00
font-family: 'Avenir Next', Montserrat, sans-serif;
2016-06-10 02:15:50 +00:00
color: $light-primary-text-color;
}
2016-08-28 00:46:20 +00:00
body {
background-color: $light-background-color;
}
2016-05-18 17:37:59 +00:00
.root-app, .app {
2016-05-11 02:22:32 +00:00
min-height: 100%;
height: 100%;
2016-06-10 02:15:50 +00:00
}
a {
text-decoration: none;
2016-07-12 02:00:11 +00:00
color: $light-inactive-text-color;
2016-07-15 17:11:50 +00:00
cursor: pointer;
2016-06-10 02:15:50 +00:00
&:hover {
text-decoration: none;
color: $light-primary-text-color;
}
2016-06-14 01:07:00 +00:00
}
input, button {
font-size: 1rem;
}
input {
padding: #{5 / $base-font-size}rem;
// border-radius: 2px;
2016-06-14 01:07:00 +00:00
border: 1px solid $input-border-color;
padding: #{10 / $base-font-size}rem;
2016-06-14 01:07:00 +00:00
}
2016-06-14 23:49:37 +00:00
input[type="submit"] {
2016-06-14 01:07:00 +00:00
@extend %button;
2016-06-21 03:04:41 +00:00
}
h2 {
font-size: #{21 / $base-font-size}em;
}
h3 {
font-weight: normal;
2016-07-06 15:27:39 +00:00
}
h4 {
font-weight: normal;
}
2016-07-11 02:52:48 +00:00
h6 {
font-weight: normal;
}
2016-07-05 20:04:14 +00:00
thead {
text-align: left;
2016-07-12 03:03:54 +00:00
}