insomnia/app/css/base.scss

52 lines
604 B
SCSS
Raw Normal View History

2016-03-16 05:49:42 +00:00
@import 'constants/colors';
@import 'constants/dimensions';
html, body, #root {
2016-03-20 20:42:27 +00:00
display: block;
2016-03-16 05:49:42 +00:00
width: 100%;
2016-03-21 05:47:49 +00:00
height: 100%;
2016-03-16 05:49:42 +00:00
}
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-21 05:47:49 +00:00
.tall {
height: 100%;
display: block;
box-sizing: border-box;
}
.hide-scrollbars {
&::-webkit-scrollbar {
display: none;
}
}
2016-03-22 06:03:43 +00:00
.ReactTabs__TabList {
height: $header-height;
}
2016-03-16 23:34:25 +00:00
strong {
font-weight: 600;
2016-03-16 20:02:47 +00:00
}