selfprivacy.org/_vendor/github.com/google/docsy/assets/scss/_pageinfo.scss

26 lines
487 B
SCSS
Raw Normal View History

2024-04-21 23:04:16 +00:00
.pageinfo {
2024-04-25 22:15:39 +00:00
font-weight: $font-weight-medium;
background: $gray-100;
color: inherit;
border-radius: 0;
margin: 2rem;
padding: 1.5rem;
padding-bottom: 0.5rem;
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
@each $color, $value in $theme-colors {
&-#{$color} {
border-style: solid;
border-color: $value;
2024-04-21 23:04:16 +00:00
}
2024-04-25 22:15:39 +00:00
}
}
.td-page-meta {
&__lastmod {
@extend .text-muted;
@extend .border-top;
margin-top: map-get($spacers, 5) !important;
padding-top: map-get($spacers, 3) !important;
}
2024-04-21 23:04:16 +00:00
}