71 lines
1016 B
SCSS
71 lines
1016 B
SCSS
//
|
|
// _demos.scss
|
|
//
|
|
|
|
// Demo Only
|
|
.button-items {
|
|
margin-right: -8px;
|
|
margin-bottom: -12px;
|
|
|
|
.btn {
|
|
margin-bottom: 12px;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
// Lightbox
|
|
|
|
.mfp-popup-form {
|
|
max-width: 1140px;
|
|
}
|
|
|
|
// Modals
|
|
|
|
.bs-example-modal {
|
|
position: relative;
|
|
top: auto;
|
|
left: auto;
|
|
bottom: auto;
|
|
right: auto;
|
|
z-index: 1;
|
|
display: block;
|
|
}
|
|
|
|
|
|
// Icon demo ( Demo only )
|
|
.icon-demo-content {
|
|
text-align: center;
|
|
color: $gray-500;
|
|
|
|
i{
|
|
display: block;
|
|
font-size: 24px;
|
|
margin-bottom: 16px;
|
|
color: $gray-500;
|
|
transition: all 0.4s;
|
|
}
|
|
|
|
.col-lg-4 {
|
|
margin-top: 24px;
|
|
|
|
&:hover {
|
|
i {
|
|
color: $primary;
|
|
transform: scale(1.5);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Grid
|
|
|
|
.grid-structure {
|
|
.grid-container {
|
|
background-color: $gray-100;
|
|
margin-top: 10px;
|
|
font-size: .8rem;
|
|
font-weight: $font-weight-medium;
|
|
padding: 10px 20px;
|
|
}
|
|
} |