kopia lustrzana https://github.com/bristol-seds/pico-tracker
113 wiersze
1.3 KiB
SCSS
113 wiersze
1.3 KiB
SCSS
/**
|
|
* Basic styling
|
|
*/
|
|
body {
|
|
font-family: $base-font-family;
|
|
}
|
|
a:hover, a:focus {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/**
|
|
* Styling for the top left of the navbar
|
|
*/
|
|
.navbar-brand strong {
|
|
color: rgb(190,0,0);
|
|
}
|
|
.navbar-brand strong:hover {
|
|
color: rgb(140,0,0);
|
|
}
|
|
|
|
/**
|
|
* Icons
|
|
*/
|
|
.icon {
|
|
> svg {
|
|
display: inline;
|
|
width: 16px;
|
|
height: 19px;
|
|
vertical-align: text-bottom;
|
|
|
|
path {
|
|
fill: grey;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Carousel
|
|
*/
|
|
.carousel-max-width-1920 {
|
|
max-width: 1920px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.carousel-max-width-800 {
|
|
max-width: 800px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/**
|
|
* Maps
|
|
*/
|
|
.map-canvas {
|
|
height: 400px;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/**
|
|
* Charts
|
|
*/
|
|
|
|
.nvd3 text {
|
|
font: 400 12px 'Open Sans'
|
|
}
|
|
|
|
/**
|
|
* Code formatting
|
|
*/
|
|
pre,
|
|
code {
|
|
border: 1px solid lighten(gray, 40%);
|
|
border-radius: 3px;
|
|
background-color: #eef;
|
|
}
|
|
|
|
code {
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
pre {
|
|
padding: 8px 12px;
|
|
overflow-x: scroll;
|
|
|
|
> code {
|
|
border: 0;
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.fill-page > img {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
border: 0px none;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Old Notice
|
|
*/
|
|
.glyphicon-warning-sign {
|
|
font-size: 4em;
|
|
color: #f77;
|
|
padding-right: 10px;
|
|
float: right
|
|
}
|