This repository has been archived by the owner on Dec 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add themeable border at top of body. * Add themeable input buttons for forms. * Improve readability with bigger larger font for tablets and desktops. * Adjust widths.
- Loading branch information
Matthew Lang
committed
Sep 26, 2016
1 parent
474f610
commit d6938c2
Showing
5 changed files
with
114 additions
and
50 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 |
---|---|---|
@@ -1,18 +1,25 @@ | ||
## Daring 0.1.5 | ||
|
||
* Add themeable border at top of body. | ||
* Add themeable input buttons for forms. | ||
* Improve readability with bigger larger font for tablets and desktops. | ||
* Adjust widths. | ||
|
||
## Daring 0.1.4 | ||
|
||
* Fix styling for tag page descriptions to make them stand out from the tag name | ||
* Fix styling for tag page descriptions to make them stand out from the tag name. | ||
|
||
## Daring 0.1.3 | ||
|
||
* Fix bug in main navigation list items | ||
* Fix bug in main navigation list items. | ||
|
||
## Daring 0.1.2 | ||
|
||
* Add responsive styling | ||
* Add responsive styling. | ||
|
||
## Daring 0.1.1 | ||
|
||
* Tidy up author template | ||
* Add license | ||
* Add changelog | ||
* Add Facebook link | ||
* Tidy up author template. | ||
* Add license. | ||
* Add changelog. | ||
* Add Facebook link. |
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,81 @@ | ||
/* | ||
* Themes | ||
*/ | ||
.red a { | ||
color: #ab4642; | ||
} | ||
|
||
body.red { | ||
border-top: 4px solid #ab4642; | ||
} | ||
|
||
input[type='submit'].button-primary { | ||
background-color: #ab4642; | ||
border-color: #ab4642; | ||
} | ||
|
||
.orange a { | ||
color: #dc9656; | ||
} | ||
|
||
body.orange { | ||
border-top: 4px solid #dc9656; | ||
} | ||
|
||
input[type='submit'].button-primary { | ||
background-color: #dc9656; | ||
border-color: #dc9656; | ||
} | ||
|
||
.green a { | ||
color: #a1b56c; | ||
} | ||
|
||
body.green { | ||
border-top: 4px solid #a1b56c; | ||
} | ||
|
||
input[type='submit'].button-primary { | ||
background-color: #a1b56c; | ||
border-color: #a1b56c; | ||
} | ||
|
||
.purple a { | ||
color: #ba8baf; | ||
} | ||
|
||
body.purple { | ||
border-top: 4px solid #ba8baf; | ||
} | ||
|
||
input[type='submit'].button-primary { | ||
background-color: #ba8baf; | ||
border-color: #ba8baf; | ||
} | ||
|
||
.brown a { | ||
color: #a16946; | ||
} | ||
|
||
body.brown { | ||
border-top: 4px solid #a16946; | ||
} | ||
|
||
input[type='submit'].button-primary { | ||
background-color: #a16946; | ||
border-color: #a16946; | ||
} | ||
|
||
.blue a { | ||
color: #7cafc2; | ||
} | ||
|
||
body.blue { | ||
border-top: 4px solid #7cafc2; | ||
} | ||
|
||
|
||
input[type='submit'].button-primary { | ||
background-color: #7cafc2; | ||
border-color: #7cafc2; | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"name": "Daring", | ||
"version": "0.1.4" | ||
} | ||
"version": "0.1.5" | ||
} |