Update color theme to white and blue

- Border accent shadow effect that makes assets float of page
- Apply border accent to image captions
This commit is contained in:
2024-02-18 13:12:41 +01:00
parent fee7ae097b
commit b5513a8111
6 changed files with 39 additions and 13 deletions

View File

@@ -194,3 +194,13 @@ figure.fullwidth {
}
}
}
@mixin border-accent {
background-color: white;
border: 1px solid rgba(8,76,207,0.3);
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 76, 207, 0.07) 4px 4px 0px 0px;
}
.border-accent {
@include border-accent;
}