-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starts some theming work. More cleanup of Venue.
- Loading branch information
Showing
8 changed files
with
235 additions
and
171 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,14 @@ | ||
# Theme Customization | ||
|
||
`THEME-X` is an identifier that has been used to denote where a customization has been made. | ||
|
||
## Making changes | ||
|
||
1. Modify key variables in `:root` in `main.css`. | ||
2. Look for `THEME-X` comments throughout the codebase and make appropriat changes. | ||
|
||
|
||
## Design guidelines | ||
|
||
1. Sizing, padding, spacing, typography, and general "shape" should stay the same. | ||
2. Colors, fonts, photo treatment, and artistic treatments should be the focus of the theme. |
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
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
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,12 @@ | ||
.badge { | ||
@apply inline-block px-4 py-2 font-medium rounded-lg text-sm; | ||
@apply bg-gray-100; | ||
|
||
/* THEME-X: Text color */ | ||
color: var(--theme-text-color); | ||
} | ||
|
||
/* THEME-X: Color configuration */ | ||
.badge-blue { | ||
@apply text-blue-900 bg-blue-50; | ||
} |
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,11 +1,10 @@ | ||
.button { | ||
@apply inline-flex items-center justify-center; | ||
@apply px-4 py-2; | ||
@apply font-medium rounded-md; | ||
@apply text-white bg-gray-900 border border-transparent; | ||
} | ||
@apply inline-flex items-center justify-center px-4 py-2 rounded-md; | ||
@apply border-2; | ||
@apply font-medium text-base; | ||
|
||
border-color: var(--theme-text-color); | ||
|
||
.button.secondary { | ||
@apply text-gray-900 bg-transparent; | ||
@apply border-gray-900; | ||
/* THEME-X: borders have unique rounding */ | ||
/*@apply border-r-4 border-b-4;*/ | ||
} |
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
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
Oops, something went wrong.