59 lines
1.1 KiB
SCSS
59 lines
1.1 KiB
SCSS
|
@charset "utf-8";
|
||
|
@import "variables";
|
||
|
@import "grid";
|
||
|
|
||
|
.message {
|
||
|
position: fixed;
|
||
|
right: 1rem;
|
||
|
top: 4rem;
|
||
|
color: $white;
|
||
|
padding: 16px 1.375rem;
|
||
|
background-color: $main-color;
|
||
|
border-radius: $border-radius-narrow;
|
||
|
font-size: 13px;
|
||
|
box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
|
||
|
-webkit-animation-duration: .3s;
|
||
|
animation-duration: .3s;
|
||
|
z-index: 1000;
|
||
|
}
|
||
|
|
||
|
.group {
|
||
|
display: -webkit-flex;
|
||
|
display: -ms-flexbox;
|
||
|
display: flex;
|
||
|
overflow: hidden;
|
||
|
-webkit-flex-wrap: wrap;
|
||
|
-ms-flex-wrap: wrap;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
.group-item {
|
||
|
padding: 0;
|
||
|
margin-bottom: 10px;
|
||
|
margin: 8px;
|
||
|
padding: 15px 20px;
|
||
|
border: 2px solid lighten($gray, 30%);
|
||
|
border-radius: $border-radius-narrow;
|
||
|
}
|
||
|
|
||
|
.group-actions {
|
||
|
padding: 8px;
|
||
|
background-color: lighten($gray, 45%);
|
||
|
}
|
||
|
|
||
|
.group-img {
|
||
|
margin-bottom: 8px
|
||
|
}
|
||
|
|
||
|
.group-label {
|
||
|
font-family: $main-font;
|
||
|
font-size: 12px;
|
||
|
display: inline;
|
||
|
vertical-align: middle;
|
||
|
color: lighten($black, 50%);
|
||
|
}
|
||
|
|
||
|
.group-clear-4 {
|
||
|
> .group-item:nth-child(4n+1) {
|
||
|
clear: both;
|
||
|
}
|
||
|
}
|