summaryrefslogtreecommitdiffstats
path: root/webapp/sass/layout
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/layout')
-rw-r--r--webapp/sass/layout/_forms.scss31
-rw-r--r--webapp/sass/layout/_headers.scss46
2 files changed, 56 insertions, 21 deletions
diff --git a/webapp/sass/layout/_forms.scss b/webapp/sass/layout/_forms.scss
index 1dd2bb827..7b4e03ad9 100644
--- a/webapp/sass/layout/_forms.scss
+++ b/webapp/sass/layout/_forms.scss
@@ -60,3 +60,34 @@
}
}
+.padding-top {
+ padding-top: 7px;
+
+ &.x2 {
+ padding-top: 14px;
+ }
+
+ &.x3 {
+ padding-top: 21px;
+ }
+}
+
+.padding-bottom {
+ padding-bottom: 7px;
+
+ &.x2 {
+ padding-bottom: 14px;
+ }
+
+ &.x3 {
+ padding-bottom: 21px;
+ }
+
+ .control-label {
+ font-weight: 600;
+
+ &.text-left {
+ text-align: left;
+ }
+ }
+}
diff --git a/webapp/sass/layout/_headers.scss b/webapp/sass/layout/_headers.scss
index e75d2556b..ae114a805 100644
--- a/webapp/sass/layout/_headers.scss
+++ b/webapp/sass/layout/_headers.scss
@@ -344,32 +344,36 @@
}
}
-.channel-header__links {
- font-family: 'Open Sans', sans-serif;
- font-size: 22px;
- height: 30px;
- line-height: 26px;
- margin-right: 9px;
- width: 24px;
-
- .channel__wrap.move--left & {
- position: absolute;
- right: -400px;
- top: 14px;
- }
+.app__body {
- > a {
- @include opacity(.6);
- @include single-transition(all, .1s, ease-in);
- color: inherit;
- text-decoration: none;
+ .channel-header__links {
+ font-family: 'Open Sans', sans-serif;
+ font-size: 22px;
+ height: 30px;
+ line-height: 26px;
+ margin-right: 9px;
+ width: 24px;
- &:hover {
- @include opacity(1);
+ .channel__wrap.move--left & {
+ position: absolute;
+ right: -400px;
+ top: 14px;
}
- &:focus {
+ > a {
+ @include opacity(.6);
+ @include single-transition(all, .1s, ease-in);
color: inherit;
+ text-decoration: none;
+
+ &:hover {
+ @include opacity(1);
+ }
+
+ &:focus {
+ color: inherit;
+ }
}
}
+
}