Skip to content

Commit 53a0b8d

Browse files
authored
Merge pull request #163 from JackieBinya/bg-fix-background-color
Changes site's main content background color from white to #F5F5F5
2 parents f11d953 + 828bbbb commit 53a0b8d

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

src/App.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ export default {
111111
-moz-osx-font-smoothing: grayscale;
112112
color: #2c3e50;
113113
counter-reset: step-counter;
114+
background-color: #f5f5f5;
114115
}
115116
#site-container {
116117
padding: 0.75rem;

src/components/LicenseCopy.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ export default {
167167
#attribution-text p {
168168
margin-top: 0.5rem;
169169
margin-bottom: 1rem;
170+
background-color: #fff;
171+
padding: 24px 0 0 24px;
172+
height: 100px;
170173
}
171174
#generated-html-container {
172175
padding-top: 10px;

src/components/Stepper.vue

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,10 @@ export default {
380380
.current,
381381
.previous {
382382
color: black;
383+
background-color: #fff;
384+
}
385+
.inactive{
386+
background-color: #F5F5F5;
383387
}
384388
.previous.disabled {
385389
color: #B0B0B0;
@@ -396,10 +400,17 @@ export default {
396400
.step-navigation .pagination-previous {
397401
font-family: Roboto Condensed,sans-serif;
398402
font-style: normal;
399-
font-weight: 500;
400403
font-size: 18px;
401404
line-height: 24px;
402405
}
406+
.step-navigation,
407+
.step-navigation {
408+
font-weight: 500;
409+
}
410+
.pagination-next,
411+
.pagination-previous {
412+
font-weight: bold;
413+
}
403414
.step-navigation .pagination-previous {
404415
border: 2px solid #787878;
405416
color: #787878;
@@ -411,6 +422,7 @@ export default {
411422
}
412423
.pagination-next.disabled {
413424
background-color: #D8D8D8;
425+
color: #787878 !important;
414426
}
415427
.pagination-next.disabled:hover,
416428
.pagination-next.disabled:active {

0 commit comments

Comments
 (0)