insomnia/app/css/base.scss

35 lines
394 B
SCSS
Raw Normal View History

2016-03-16 05:49:42 +00:00
@import 'constants/colors';
@import 'constants/dimensions';
html, body, #root {
height: 100%;
width: 100%;
}
body {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
font-size: $font-size;
}
h1 {
font-size: $font-size-xxl;
}
h2 {
font-size: $font-size-xl;
}
2016-03-16 23:34:25 +00:00
.text-center {
text-align: center;
2016-03-16 20:02:47 +00:00
}
2016-03-20 04:00:40 +00:00
.pull-right {
float: right;
}
2016-03-16 23:34:25 +00:00
strong {
font-weight: 600;
2016-03-16 20:02:47 +00:00
}