-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add stone theme * Fix h2 color, change rogue-legacy to stone theme (approved by Phar) * Add stone theme preview to world api.md * Different stone theme preview to match other images
- Loading branch information
1 parent
4e5071f
commit 1843618
Showing
10 changed files
with
81 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,65 @@ | ||
html{ | ||
background-image: url('../../static/backgrounds/stone.png'); | ||
background-repeat: repeat; | ||
background-size: 275px 275px; | ||
} | ||
|
||
body{ | ||
color: #ffffff; | ||
} | ||
|
||
#base-header { | ||
background: url('../../static/backgrounds/header/stone-header.png') repeat-x; | ||
} | ||
|
||
.markdown { | ||
background-color: rgba(0, 0, 0, 0.66) !important; | ||
} | ||
|
||
h1{ | ||
color: #cccbc3; | ||
} | ||
|
||
h2{ | ||
color: #aad79c; | ||
} | ||
|
||
h3, h4, h5,h6{ | ||
color: #ffffff; | ||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
table th{ | ||
|
||
} | ||
|
||
table td{ | ||
|
||
} | ||
|
||
a{ | ||
color: #96e2ff; | ||
} | ||
|
||
pre{ | ||
margin-top: 0; | ||
padding: 0.5rem 0.25rem; | ||
border-radius: 6px; | ||
color: #000000; | ||
} | ||
|
||
pre code{ | ||
border: none; | ||
} | ||
|
||
code{ | ||
border-radius: 4px; | ||
padding-left: 0.25rem; | ||
padding-right: 0.25rem; | ||
color: #000000; | ||
} | ||
|
||
pre, code{ | ||
background-color: #e4ffdb; | ||
border: 1px solid #2d3435; | ||
} |
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,5 @@ | ||
{% block head %} | ||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/themes/stone.css") }}" /> | ||
{% endblock %} | ||
|
||
{% include 'header/baseHeader.html' %} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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