diff options
Diffstat (limited to 'client/src/sass/application.scss')
-rw-r--r-- | client/src/sass/application.scss | 40 |
1 files changed, 32 insertions, 8 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 99566acb6..b5b05a3c4 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -96,6 +96,10 @@ noscript, | |||
96 | margin: 1rem auto; | 96 | margin: 1rem auto; |
97 | } | 97 | } |
98 | 98 | ||
99 | a { | ||
100 | text-decoration: none; | ||
101 | } | ||
102 | |||
99 | strong { | 103 | strong { |
100 | font-weight: $font-semibold; | 104 | font-weight: $font-semibold; |
101 | } | 105 | } |
@@ -120,6 +124,7 @@ button { | |||
120 | label { | 124 | label { |
121 | font-weight: $font-bold; | 125 | font-weight: $font-bold; |
122 | font-size: 15px; | 126 | font-size: 15px; |
127 | margin-bottom: 0.5rem; | ||
123 | } | 128 | } |
124 | 129 | ||
125 | code { | 130 | code { |
@@ -133,6 +138,10 @@ code { | |||
133 | vertical-align: middle; | 138 | vertical-align: middle; |
134 | } | 139 | } |
135 | 140 | ||
141 | .form-group { | ||
142 | margin-bottom: 1rem; | ||
143 | } | ||
144 | |||
136 | .form-error, | 145 | .form-error, |
137 | .form-warning { | 146 | .form-warning { |
138 | display: block; | 147 | display: block; |
@@ -154,14 +163,6 @@ my-input-toggle-hidden ::ng-deep input { | |||
154 | max-width: initial; | 163 | max-width: initial; |
155 | } | 164 | } |
156 | 165 | ||
157 | .glyphicon-black { | ||
158 | color: #000; | ||
159 | } | ||
160 | |||
161 | .row { | ||
162 | margin: 0 !important; | ||
163 | } | ||
164 | |||
165 | .main-col { | 166 | .main-col { |
166 | @include margin-left($menu-width); | 167 | @include margin-left($menu-width); |
167 | 168 | ||
@@ -326,6 +327,29 @@ table { | |||
326 | margin-top: 10px; | 327 | margin-top: 10px; |
327 | } | 328 | } |
328 | 329 | ||
330 | .callout { | ||
331 | padding: 1.25rem; | ||
332 | border: 1px solid #eee; | ||
333 | border-radius: .25rem; | ||
334 | position: relative; | ||
335 | |||
336 | > label { | ||
337 | position: relative; | ||
338 | top: -5px; | ||
339 | left: -10px; | ||
340 | color: #6c757d !important; | ||
341 | } | ||
342 | |||
343 | &:not(.callout-light) { | ||
344 | border-left-width: .25rem; | ||
345 | } | ||
346 | |||
347 | &.callout-info { | ||
348 | border-color: pvar(--mainColorLightest); | ||
349 | border-left-color: pvar(--mainColor); | ||
350 | } | ||
351 | } | ||
352 | |||
329 | @media screen and (max-width: #{breakpoint(xxl)}) { | 353 | @media screen and (max-width: #{breakpoint(xxl)}) { |
330 | .main-col { | 354 | .main-col { |
331 | --horizontalMarginContent: #{math.div($not-expanded-horizontal-margins, 2)}; | 355 | --horizontalMarginContent: #{math.div($not-expanded-horizontal-margins, 2)}; |