Skip to content

Commit e6f46f5

Browse files
committed
remove color overrides
1 parent b6cd76e commit e6f46f5

File tree

9 files changed

+1
-26
lines changed

9 files changed

+1
-26
lines changed

app/styles/_class.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ article.chapter {
9090
.attribute-label {
9191
display: inline-block;
9292
width: 120px;
93-
color: $black;
94-
font-weight: bold;
95-
text-transform: uppercase;
9693

9794
@media (max-width: $mobile-portrait-screen){
9895
display: block;

app/styles/base/_lists.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ ol {
3131
content: counter(customlistcounter) " ";
3232
border: 2px solid $base-border-color;
3333
border-radius: 50%;
34-
color: $light-brown;
3534
float: left;
3635
font-size: $small-font-size;
3736
line-height: calc(2em - 4px);

app/styles/base/_typography.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ h6 {
1212
}
1313
}
1414

15-
h1 {
16-
color: $ember-orange;
17-
}
18-
1915
a {
2016
text-decoration: none;
2117
transition: color 0.1s linear;

app/styles/base/_variables.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ $top-spacing: $base-spacing * 3.333; // 80px
1919

2020
// Colors
2121
$ember-orange: #dd6a58;
22-
$light-brown: #b67d47;
23-
$brown: #865931;
2422
$medium-gray: #999;
2523
$dark-gray: #444545;
2624
$tan: #fffdf9;
@@ -60,7 +58,6 @@ $highlight-colors: (
6058
// Font Colors
6159
$base-font-color: $near-black;
6260
$dark-font-color: $dark-gray;
63-
$light-font-color: $light-brown;
6461
$action-color: $ember-orange;
6562

6663
// Border

app/styles/components/_article.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ article {
77

88
.edit-page {
99
@include size(24px, 18px);
10-
color: $brown;
1110
display: inline-block;
1211
float: right;
1312
font-size: 1rem;

app/styles/components/_class-field-desc.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
}
1212

1313
.args {
14-
color: $light-brown;
1514
font-style: italic;
1615
font-weight: normal;
1716
font-size: $base-font-size;

app/styles/components/_highlight.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
}
161161

162162
code {
163-
background-color: $base-border-color;
163+
background-color: #DCE0E6;
164164
border-radius: $base-border-radius;
165165
font-family: $monospace-font-family;
166166
font-size: 0.9em;

app/styles/components/_layout.scss

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
body {
2-
background-color: $base-background-color;
3-
margin: 0;
4-
}
5-
61
main {
72
@include media($large-screen) {
83
display: flex;

app/styles/components/_sidebar.scss

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
.sidebar {
2-
background-color: $sidebar-background-color;
3-
border-bottom: $base-border;
42
position: relative;
53
z-index: 1;
64
padding: $small-spacing 0;
@@ -11,14 +9,12 @@
119
margin-right: 0;
1210
width: 19em;
1311
border-bottom: 0;
14-
border-right: $base-border;
1512
padding: $small-spacing $base-spacing $base-spacing * 1.5;
1613

1714
&::before {
1815
@include position(absolute, 0 0 0 -100vw);
1916
content: "";
2017
display: block;
21-
background-color: $sidebar-background-color;
2218
z-index: -1;
2319
}
2420

@@ -54,7 +50,6 @@ label[for="toc-toggle"] {
5450

5551
&:after {
5652
content: '';
57-
border-color: $light-brown rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
5853
border-style: solid;
5954
border-width: 5px 4px 0 4px;
6055
height: 0;
@@ -67,7 +62,6 @@ label[for="toc-toggle"] {
6762
}
6863

6964
.toc-toggle:checked ~ &:after {
70-
border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) $light-brown rgba(0, 0, 0, 0);
7165
border-width: 0 4px 5px 4px;
7266
}
7367

@@ -98,7 +92,6 @@ li.toc-level-0 {
9892
margin-bottom: 0.5em;
9993

10094
a {
101-
color: $brown;
10295
display: block;
10396
line-height: 1.25;
10497
padding-top: 0.25em;

0 commit comments

Comments
 (0)