insomnia/app/css/layout/base.scss
2016-07-22 14:35:49 -07:00

278 lines
3.2 KiB
SCSS

@import '../constants/colors';
@import '../constants/dimensions';
@import '../constants/fonts';
html {
font-family: 'Open Sans', sans-serif;
font-size: $font-size;
}
html, body, #root {
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
}
h1 {
font-size: $font-size-xxl;
}
h2 {
font-size: $font-size-xl;
}
h3 {
font-size: $font-size-lg;
}
h1, h2, h3 {
padding-bottom: 1em;
}
hr {
width: 100%;
height: 0;
border: 0;
border-bottom: 1px solid $hl-md;
margin: $padding-md 0;
}
em {
font-style: italic;
}
label {
display: inline-block;
}
p {
margin-bottom: 1.5em;
}
label.label--small,
table th {
color: $hl;
text-transform: uppercase;
font-size: 0.8em;
padding-bottom: $padding-xxs;
}
webview {
height: 100%;
width: 100%;
background-color: $bg-super-light;
}
table {
td {
padding-top: $padding-sm;
&:not(:last-child) {
padding-right: $padding-lg;
}
}
th {
text-align: left;
padding-bottom: 0.5em;
}
}
code {
display: inline-block;
background: $hl-xs;
border: 1px solid $hl-sm;
padding: $padding-xs $padding-sm;
font-family: $font-monospace;
border-radius: $radius-md;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left !important;
}
.pull-right {
float: right;
}
.tall {
height: 100% !important;
}
.faint {
color: $hl;
}
.super-faint {
color: $hl-lg;
}
.valign-bottom {
vertical-align: bottom;
}
.pointer {
cursor: pointer;
}
.wide {
width: 100%;
}
.relative {
position: relative;
}
/* Make all font awesome icons the same width */
i.fa {
width: 1.1em;
text-align: center;
}
.force-wrap {
word-break: break-all;
white-space: pre-wrap;
}
.no-wrap {
white-space: nowrap;
}
.pad {
box-sizing: border-box;
padding: $padding-md;
}
.pad-top {
box-sizing: border-box;
padding-top: $padding-md;
}
.pad-bottom {
box-sizing: border-box;
padding-bottom: $padding-md;
}
.no-pad-bottom {
padding-bottom: 0;
}
.pad-left-half {
padding-left: $padding-md / 2;
}
.pad-right-half {
padding-right: $padding-md / 2;
}
.no-pad {
padding: 0 !important;
}
.no-margin {
margin: 0 !important;
}
.block {
display: block !important;
}
.grid {
display: grid !important;
}
.inline-block {
display: inline-block !important;
}
.italic {
font-style: italic;
}
.selectable {
-webkit-user-select: text;
cursor: text;
}
.hide-scrollbars {
&::-webkit-scrollbar {
display: none;
}
}
.scrollable {
overflow: auto;
}
.hover-scrollbars {
&::-webkit-scrollbar {
display: none;
}
&:hover::-webkit-scrollbar {
display: block;
}
}
.section.section--bordered {
.section__header {
border-right: 1px solid #eee;
&.bg-brand {
border-right-color: $bg-brand;
}
}
.section__body {
border-right: 1px solid $hl-sm;
}
}
strong {
font-weight: 600;
}
.hide-above-lg {
display: none;
}
.hide-above-md {
display: none;
}
@media (max-width: $breakpoint-lg) {
.hide-below-lg {
display: none;
}
.hide-above-lg {
display: initial;
}
}
@media (max-width: $breakpoint-md) {
html {
font-size: $font-size * 0.95;
}
.hide-below-md {
display: none;
}
.hide-above-md {
display: initial;
}
}