Updated all component styles

new mixins, consolidated
all original styles files uncomitted
This commit is contained in:
mgabdev
2019-08-12 16:48:46 -04:00
parent 3d509c84a2
commit 47b43d78d9
45 changed files with 829 additions and 202 deletions

View File

@@ -1,12 +1,10 @@
.embed-modal {
max-width: 80vw;
max-height: 80vh;
@include max-size(80vw, 80vh);
h4 {
padding: 30px;
font-weight: 500;
font-size: 16px;
text-align: center;
@include text-sizing(16px, 500, 1, center);
}
.embed-modal__container {
@@ -44,7 +42,7 @@
background: lighten($ui-base-color, 4%);
}
@media screen and (max-width: 600px) {
@include breakpoint(sm) {
font-size: 16px;
}
}

View File

@@ -13,8 +13,7 @@
position: relative;
border-bottom: 1px solid lighten($classic-base-color, 8%);
border-radius: 6px 6px 0 0;
padding-top: 12px;
padding-bottom: 12px;
padding: 12px 0;
&__title {
display: block;
@@ -66,8 +65,8 @@
display: inline-block;
padding: 2px 8px;
background-color: lighten($ui-base-color, 8%);
border: 1px solid darken($ui-base-color, 4%);
border-radius: 4px;
@include border-design(darken($ui-base-color, 4%), 1px, 4px);
}
}
}

View File

@@ -26,8 +26,8 @@
position: relative;
border-bottom: 1px solid lighten($classic-base-color, 8%);
border-radius: 6px 6px 0 0;
padding-top: 12px;
padding-bottom: 12px;
@include vertical-padding(12px);
&__title {
display: block;

View File

@@ -0,0 +1,22 @@
.setting-text {
color: $darker-text-color;
background: transparent;
border: none;
border-bottom: 2px solid $ui-primary-color;
box-sizing: border-box;
display: block;
font-family: inherit;
margin-bottom: 10px;
padding: 7px 0;
width: 100%;
&:focus,
&:active {
color: $primary-text-color;
border-bottom-color: $highlight-text-color;
}
@include breakpoint(sm) {
font-size: 16px;
}
}