frontend/src/stylesheets/random-item.scss

62 lines
965 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;
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 */
.view-all-parents {
2018-12-11 14:41:57 +02:00
color: white;
background: black;
padding: 1em;
position: relative;
top: 1em;
2018-12-11 12:42:56 +02:00
}
.view-all-parents,
.view-all-items {
2018-12-11 14:41:57 +02:00
text-decoration: none;
2018-12-11 12:42:56 +02:00
}
.view-all-items {
2018-12-11 14:41:57 +02:00
color: black;
text-decoration: none;
padding: 1em;
border: 1px solid black;
position: relative;
top: 1em;
2018-12-11 12:42:56 +02:00
}