-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(styling): Set grayscale as default, add styling as external file
- Loading branch information
1 parent
f3e58b7
commit 5d8cca8
Showing
5 changed files
with
52 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* Bottom border of each suggestion */ | ||
.ads-suggestion { | ||
border-bottom-color: #3A3DD1; | ||
} | ||
/* Main category headers */ | ||
.ads-suggestion--category-header { | ||
background-color: #4B54DE; | ||
} | ||
/* Highlighted search terms */ | ||
.ads-suggestion--highlight { | ||
color: #3A33D1; | ||
} | ||
/* Highligted search terms in the main category headers */ | ||
.ads-suggestion--category-header .ads-suggestion--highlight { | ||
background-color: #4D47D5; | ||
} | ||
/* Currently selected suggestion */ | ||
.aa-cursor .ads-suggestion--content { | ||
color: #272296; | ||
} | ||
.aa-cursor .ads-suggestion { | ||
background: #EBEBFB; | ||
} | ||
|
||
/* For bigger screens, when displaying results in two columns */ | ||
@media (min-width: 768px) { | ||
/* Bottom border of each suggestion */ | ||
.ads-suggestion { | ||
border-bottom-color: #7671df; | ||
} | ||
/* Left column, with secondary category header */ | ||
.ads-suggestion--subcategory-column { | ||
border-right-color: #7671df; | ||
background-color: #F2F2FF; | ||
color: #4E4726; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
$color1: #4B54DE; | ||
$color2: #4D47D5; | ||
$color3: #3A33D1; | ||
$color-border: #3A3A3A; | ||
$color-border-light: lighten($color-border, 15%); | ||
$color-category-header: #333333; | ||
$color-highlight-header: #3A3A3A; | ||
$color-highlight: #448CDE; | ||
$color-selected-background: #CECECE; | ||
$color-selected-text: #0000FF; | ||
$color-left-column-bg: #CECECE; | ||
$color-left-column: #4E4726; | ||
|
||
$breakpoint-medium: 568px; | ||
$breakpoint-large: 768px;; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters