37 lines
551 B
SCSS
37 lines
551 B
SCSS
@import "variables";
|
|
|
|
|
|
/* section heading*/
|
|
.section-title {
|
|
padding: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
.section-title::after{
|
|
width: 100%;
|
|
}
|
|
.section-heading{
|
|
padding-top: 1em;
|
|
}
|
|
|
|
/* view all elements */
|
|
.view-all-parents {
|
|
color: white;
|
|
background: black;
|
|
padding: 1em;
|
|
position: relative;
|
|
top: 1em;
|
|
}
|
|
|
|
.view-all-parents,
|
|
.view-all-items {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.view-all-items {
|
|
color: black;
|
|
text-decoration: none;
|
|
padding: 1em;
|
|
border: 1px solid black;
|
|
position: relative;
|
|
top: 1em;
|
|
}
|