mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-06-08 11:23:11 +00:00
Fixed group creation, updated sanity output
This commit is contained in:
parent
c3814000c0
commit
436a49e3ed
9 changed files with 141 additions and 106 deletions
|
@ -146,6 +146,49 @@ a.btn {
|
|||
|
||||
}
|
||||
|
||||
/*
|
||||
|-------------------------------------------------------------
|
||||
| ALERTS
|
||||
|-------------------------------------------------------------
|
||||
*/
|
||||
.alert {
|
||||
padding: 0.75rem;
|
||||
|
||||
width: 100%;
|
||||
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
font-family: $font-body;
|
||||
|
||||
text-decoration: none;
|
||||
|
||||
border-left: $border-thickness solid $fg;
|
||||
background-color: $bg;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@if calc($rad - 0.5rem) > 0 {
|
||||
border-radius: calc($rad - 0.3rem);
|
||||
} @else {
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
.alert-bad {
|
||||
border-color: $warning;
|
||||
background-image: linear-gradient(to right, rgba($warning, 0.3), rgba($bg, 0));
|
||||
}
|
||||
.alert-warning {
|
||||
border-color: $alert;
|
||||
background-image: linear-gradient(to right, rgba($alert, 0.3), rgba($bg, 0));
|
||||
}
|
||||
.alert-good {
|
||||
border-color: $page-accent;
|
||||
background-image: linear-gradient(to right, rgba($page-accent, 0.3), rgba($bg, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
|-------------------------------------------------------------
|
||||
| FORM SIZING
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue