Commit 8b77111d by Brian Talbot

Studio: more styling changes

typography, SASS, imports
parent 5d783d33
...@@ -166,6 +166,37 @@ h1 { ...@@ -166,6 +166,37 @@ h1 {
font-weight: 600; font-weight: 600;
} }
// typography - primary content
.content-secondary {
.section-header {
color: $gray-d3;
.subtitle {
color: $gray-l2;
}
}
.content-header {
color: $gray-d3;
.subtitle {
color: $gray-l2;
}
}
.content-header {
color: $gray-d3;
.subtitle {
color: $gray-l2;
}
}
}
// ====================
// typography - loose headings (BT: needs to be removed once html is clean)
.title-1 { .title-1 {
@extend .t-title3; @extend .t-title3;
margin-bottom: ($baseline*1.5); margin-bottom: ($baseline*1.5);
......
// studio - utilities - INHERITED mixins and extends // studio - utilities - INHERITED mixins and extends
// NOTE: these are older/poorly architected mixins that we want to move away from using or refactor in the future. // NOTE: these are older/poorly architected mixins that we want to move away from using or refactor in the future.
// They are still referenced when styliing current interface elements and as such need to be preserved for the time being. // They are still referenced when styliing current interface elements and as such need to be preserved for the time being.
// talbs: we need to slowly ween ourselves off of these
// ==================== // ====================
// inherited - vertical and horizontal centering // inherited - vertical and horizontal centering
......
...@@ -111,7 +111,6 @@ ...@@ -111,7 +111,6 @@
.nav-actions .action-primary { .nav-actions .action-primary {
@include green-button(); @include green-button();
@include font-size(12); // needed due to bad button mixins for now @include font-size(12); // needed due to bad button mixins for now
border-color: $green-d2; border-color: $green-d2;
} }
...@@ -423,6 +422,7 @@ ...@@ -423,6 +422,7 @@
} }
.action-secondary { .action-secondary {
@extend .t-action4; @extend .t-action4;
} }
} }
......
...@@ -26,26 +26,6 @@ ...@@ -26,26 +26,6 @@
@include size($size); @include size($size);
} }
// ====================
// mixins - image-replacement hidden text
@mixin text-hide() {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
// mixins - hidden elems - screenreaders
@mixin text-sr() {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
// ==================== // ====================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment