frontend/src/stylesheets/random-item.scss

42 lines
655 B
SCSS
Raw Normal View History

2018-12-11 12:42:56 +02:00
@import "variables";
/* section heading*/
.section-title {
2018-12-11 14:41:57 +02:00
padding: 1em;
margin-bottom: 1em;
2018-12-11 12:42:56 +02:00
}
2018-12-11 14:41:57 +02:00
.section-heading {
padding-top: 1em;
2018-12-11 12:42:56 +02:00
}
2018-12-11 14:41:57 +02:00
.section-title{
margin: 0 0 2em 0;
line-height: 0.5;
text-align: center;
}
.section-title span{
display: inline-block;
position: relative;
}
.section-title span:before,
.section-title span:after {
content: "";
position: absolute;
height: 5px;
border-bottom: 1px solid black;
//border-top: 1px solid black;
2018-12-11 14:41:57 +02:00
top: 0;
width: 300px;
}
.section-title span:before {
right: 100%;
margin-right: 15px;
}
.section-title span:after {
left: 100%;
margin-left: 15px;
2018-12-11 12:42:56 +02:00
}
/* view all elements */