75 lines
1023 B
SCSS
75 lines
1023 B
SCSS
@import "bourbon/bourbon";
|
|
@import "colors";
|
|
|
|
//apply a natural box layout model to all elements
|
|
*, *:before, *:after {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
root {
|
|
display: block;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
background-color: #E0E0E0;
|
|
}
|
|
|
|
//Horizontal rule
|
|
hr {
|
|
background-color: #444;
|
|
opacity: 0.12;
|
|
border-width: 0;
|
|
color: #444;
|
|
height: 1px;
|
|
line-height: 0;
|
|
margin: 16px -16px;
|
|
text-align: center;
|
|
}
|
|
|
|
//FABs
|
|
.floatyButton {
|
|
position: absolute;
|
|
bottom: 24px;
|
|
right: 24px;
|
|
}
|
|
|
|
//Buttons
|
|
paper-button {
|
|
color: #000;
|
|
color: rgba(0,0,0,0.87);
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
letter-spacing: 0.010;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
//Style shortcuts
|
|
.scroll-y {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.clickable, core-item, paper-tab {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pre-wrap, .prewrap{
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.padded {
|
|
padding: 8px;
|
|
}
|
|
|
|
.fullwidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.fab-buffer {
|
|
height: 100px;
|
|
}
|