fix: prettify css
This commit is contained in:
committed by
mrugesh
parent
b8593326b0
commit
04382bc475
@ -14,12 +14,12 @@
|
||||
|
||||
.footer a:not([class*='inline']) {
|
||||
display: block;
|
||||
padding-left: 5px
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
outline-offset: 1px;
|
||||
outline: 1px dashed #A0A0A0;
|
||||
outline: 1px dashed #a0a0a0;
|
||||
background-color: #ffbe41;
|
||||
}
|
||||
|
||||
@ -35,5 +35,5 @@
|
||||
.night .footer a:hover {
|
||||
color: #606f7b;
|
||||
outline-offset: 1px;
|
||||
outline: 1px dashed #A0A0A0;
|
||||
outline: 1px dashed #a0a0a0;
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
#top-nav .menu-button {
|
||||
color: white;
|
||||
background-color: transparent;
|
||||
|
@ -29,8 +29,9 @@ h6 {
|
||||
color: #006400;
|
||||
}
|
||||
|
||||
a:hover, a:focus {
|
||||
text-decoration: none;
|
||||
a:hover,
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.fcc-modal {
|
||||
@ -42,4 +43,4 @@ a:hover, a:focus {
|
||||
color: #fff;
|
||||
font-size: 28px;
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
@ -471,7 +471,12 @@ hr {
|
||||
padding-right: 0;
|
||||
padding-top: 0;
|
||||
margin-bottom: calc(1.45rem - 1px);
|
||||
background-image: linear-gradient(to right,rgba(0,0,0,0),rgba(0,0,0,.75),rgba(0,0,0,0));
|
||||
background-image: linear-gradient(
|
||||
to right,
|
||||
rgba(0, 0, 0, 0),
|
||||
rgba(0, 0, 0, 0.75),
|
||||
rgba(0, 0, 0, 0)
|
||||
);
|
||||
border: none;
|
||||
height: 1px;
|
||||
}
|
||||
@ -582,7 +587,7 @@ code {
|
||||
border-radius: 3px;
|
||||
font-family: 'SFMono-Regular', Consolas, 'Roboto Mono', 'Droid Sans Mono',
|
||||
'Liberation Mono', Menlo, Courier, monospace;
|
||||
padding: .2em .3em;
|
||||
padding: 0.2em 0.3em;
|
||||
}
|
||||
pre code {
|
||||
background: none;
|
||||
|
@ -5,4 +5,4 @@
|
||||
.portfolio-screen-shot {
|
||||
width: 150px;
|
||||
min-width: 150px;
|
||||
}
|
||||
}
|
||||
|
@ -12,11 +12,11 @@
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.table>thead>tr>th,
|
||||
.table>tbody>tr>th,
|
||||
.table>tfoot>tr>th,
|
||||
.table>thead>tr>td,
|
||||
.table>tbody>tr>td,
|
||||
.table>tfoot>tr>td {
|
||||
.table > thead > tr > th,
|
||||
.table > tbody > tr > th,
|
||||
.table > tfoot > tr > th,
|
||||
.table > thead > tr > td,
|
||||
.table > tbody > tr > td,
|
||||
.table > tfoot > tr > td {
|
||||
border: none;
|
||||
}
|
||||
|
@ -4,7 +4,8 @@
|
||||
border-color: #ad1601;
|
||||
}
|
||||
|
||||
.btn-danger:hover, .btn-danger:focus {
|
||||
.btn-danger:hover,
|
||||
.btn-danger:focus {
|
||||
background-color: #ad1601;
|
||||
}
|
||||
.danger-zone .panel-heading {
|
||||
|
@ -1,4 +1,4 @@
|
||||
.btn-delete-portfolio {
|
||||
background-color: #fff;
|
||||
color: #f11e00
|
||||
}
|
||||
color: #f11e00;
|
||||
}
|
||||
|
@ -1,3 +1,4 @@
|
||||
.solution-viewer, .solution-viewer pre {
|
||||
.solution-viewer,
|
||||
.solution-viewer pre {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
@ -6,4 +6,4 @@
|
||||
|
||||
.toggle-setting-container .form-group label {
|
||||
max-width: 50%;
|
||||
}
|
||||
}
|
||||
|
@ -1,13 +1,13 @@
|
||||
|
||||
/*
|
||||
Embrace the cascade to override night mode styles
|
||||
This ensures a consistent landing page, even for users with nigt mode enabled
|
||||
*/
|
||||
.night body .landing-page{
|
||||
.night body .landing-page {
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
}
|
||||
.night .landing-page #top-right-nav li > a, .night #top-right-nav li > span {
|
||||
.night .landing-page #top-right-nav li > a,
|
||||
.night #top-right-nav li > span {
|
||||
color: #fff;
|
||||
}
|
||||
.night .landing-page a {
|
||||
|
@ -1,3 +1,3 @@
|
||||
.control-label.email-label {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
@ -25,6 +25,6 @@ p.stats span {
|
||||
color: #67d269;
|
||||
}
|
||||
|
||||
.night .quote-partial .blockquote {
|
||||
.night .quote-partial .blockquote {
|
||||
background-color: #333;
|
||||
}
|
||||
|
@ -2,8 +2,8 @@
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.challenge-instructions blockquote,
|
||||
.challenge-instructions pre {
|
||||
.challenge-instructions blockquote,
|
||||
.challenge-instructions pre {
|
||||
background-color: #eee;
|
||||
color: #c7254e;
|
||||
padding: 10px 10px 10px 15px;
|
||||
@ -18,6 +18,7 @@
|
||||
.challenge-instructions pre code {
|
||||
line-height: 1.42;
|
||||
text-shadow: none;
|
||||
font-family: 'SFMono-Regular', Consolas, 'Roboto Mono', 'Droid Sans Mono', 'Liberation Mono', Menlo, Courier, monospace;
|
||||
font-family: 'SFMono-Regular', Consolas, 'Roboto Mono', 'Droid Sans Mono',
|
||||
'Liberation Mono', Menlo, Courier, monospace;
|
||||
color: #c7254e;
|
||||
}
|
||||
|
@ -28,4 +28,4 @@
|
||||
.test-status-icon > svg {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
|
@ -5,4 +5,4 @@
|
||||
align-items: center;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user