definma-ui/src/styles.scss

76 lines
1.2 KiB
SCSS
Raw Normal View History

2020-01-14 16:18:26 +01:00
$font-path: "../node_modules/@inst-iot/bosch-angular-ui-components/assets/";
$rb-extended-breakpoints: false; // whether to use extended breakpoints xxl and xxxl
@import "~@inst-iot/bosch-angular-ui-components/styles/global.scss";
2020-05-19 12:49:06 +02:00
2020-08-11 14:18:16 +02:00
@font-face{
font-family: 'boschmono';
src: url(/assets/fonts/BoschMono.ttf);
}
2020-08-21 16:11:57 +02:00
*, ::after, ::before {
2020-05-19 12:49:06 +02:00
box-sizing: border-box;
}
2020-08-11 17:08:47 +02:00
body {
scroll-behavior: smooth;
}
2020-05-19 12:49:06 +02:00
a, a:active, a:focus {
outline: 0 !important;
}
button::-moz-focus-inner {
border: 0;
}
2020-07-27 17:52:03 +02:00
2020-07-29 13:14:29 +02:00
.clickable {
cursor: pointer;
}
.space-below {
margin-bottom: $default-spacing;
}
.space-above {
margin-top: $default-spacing;
}
.space-right {
margin-right: $default-spacing;
}
.space-left {
margin-left: $default-spacing;
}
2020-08-24 12:43:39 +02:00
.supergraphic {
background-image: url("/assets/imgs/supergraphic.svg");
}
2020-08-28 16:58:35 +02:00
//list styles
ul {
margin: 10px 0 10px 25px;
padding-left: 10px;
list-style: none;
li {
&:before {
float: left;
content: '';
height: 8px;
width: 8px;
background: rgb(0,0,0);
position: relative;
top: 0.5em;
margin-left: -1.5em;
margin-right: .3em;
text-align: right;
}
}
}
.nav-main a.active {
font-weight: bold;
}