Commit compiled CSS

This commit is contained in:
Benjamin Melançon 2019-08-30 16:01:07 -04:00
parent 1f3992a7b0
commit a09772e59a

View file

@ -5979,6 +5979,15 @@ label.panel-block {
.tabs.is-large {
font-size: 1.5rem; }
/**
* Extend or override Bulma's components,
* ../../node_modules/bulma/sass/components
*/
/**
* Make menu items slightly less far apart so we never entirely lose
* 'Community' on mid-size screens.
* See https://gitlab.com/drutopia/octavia/issues/52
*/
.navbar-item,
.navbar-link {
padding-left: .75rem;
@ -5989,6 +5998,7 @@ label.panel-block {
padding-left: 1rem;
padding-right: 1rem; } }
/* Featured images on article pages */
.featured-image figure.image {
width: 100vw;
position: relative;
@ -5999,9 +6009,20 @@ label.panel-block {
.featured-image figure.image img {
width: 100%; }
/* Hero image in hero block */
.has-background-image.hero {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw; }
/* Slim down section vertical padding a bit.*/
.section {
padding: 0.5rem 1.5rem 1.5rem; }
/* Give titles, from which we removed the Hero classes, the same padding as sections. */
.block-page-title-block {
padding: 1rem 1.5rem; }