silvrgit/app/css/custom.scss

73 lines
1.4 KiB
SCSS
Raw Normal View History

2016-04-28 09:48:48 +00:00
// import MUI colors
@import "../../bower_components/mui/src/sass/mui/colors";
// customize MUI variables
2017-04-05 13:22:31 +00:00
$mui-primary-color: mui-color('blue-grey', '500');
$mui-primary-color-dark: mui-color('blue-grey', '700');
$mui-primary-color-light: mui-color('blue-grey', '100');
2016-04-28 09:48:48 +00:00
$mui-accent-color: mui-color('deep-purple', '900');
$mui-accent-color-dark: mui-color('indigo', 'A100');
$mui-accent-color-light: mui-color('indigo', 'A400');
2017-04-06 09:56:11 +00:00
$mui-base-font-family: 'Roboto Slab', "Helvetica Neue", Helvetica, Arial, Verdana,"Trebuchet MS";
2016-04-28 09:48:48 +00:00
// import MUI SASS
@import "../../bower_components/mui/src/sass/mui";
////
#header {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 2;
transition: left 0.2s;
}
ul {
margin: 0;
padding: 0;
}
li {
display: inline;
margin: 0;
padding: 0 4px 0 0;
}
.dates {
padding: 2px;
border: solid 1px #80007e;
background-color: #ffffff;
}
2017-08-20 22:20:43 +00:00
#btc, #fx, #trend {
2016-04-28 09:48:48 +00:00
font-size: 85%;
}
2017-08-20 22:20:43 +00:00
.up, .ontime, .trendUp {
2016-04-28 09:48:48 +00:00
color: mui-color('green') !important;
}
2017-08-20 22:20:43 +00:00
.down, .delayed, .trendDown {
2016-04-28 09:48:48 +00:00
color: mui-color('red') !important;
}
.nochange {
color: #000000;
}
.password {
border: 1px solid mui-color('grey','400');
background-color: mui-color('grey','200');
font-family: monospace;
white-space: pre;
}
2017-08-20 22:20:43 +00:00
.trendUp:before {
content: "";
}
.trendDown:before{content:''}