##// END OF EJS Templates
Reverted setting config values that were used for testing.
Reverted setting config values that were used for testing.

File last commit:

r46:384df4e1 default
r47:ae5db8b8 default
Show More
base_page.css
175 lines | 2.4 KiB | text/css | CssLexer
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 html {
background: #555;
color: #ffffff;
}
#admin_panel {
background: #FF0000;
color: #00FF00
}
.title {
font-weight: bold;
color: #ffcc00;
}
neko259
Changed themes.
r36 .link, a {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 color: #afdcec;
}
.link:hover {
color: #fff380;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .post_id:hover {
color: #ccc555;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
neko259
Fixed post display in admin page. Fixed css in Mystic Dark.
r40 .block {
display: inline-block;
vertical-align: top;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 .tag {
color: #b4cfec;
}
.tag:hover {
color: #d0edb4;
}
.post_id {
color: #fff380;
}
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 .post, .dead_post{
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #333;
margin: 5px;
padding: 10px;
border-radius: 5px;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 clear: left;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
.metadata {
neko259
Fixed get computing. Visually differing get posts in thread.
r42 padding: 5px;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 margin-top: 10px;
border: solid 1px #666;
font-size: 0.9em;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 color: #ddd;
neko259
Fixed get computing. Visually differing get posts in thread.
r42 display: table;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #444;
margin: 5px;
padding: 10px;
border-radius: 5px;
color: #eee;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel .link {
neko259
Changed themes.
r36 border-right: 1px solid #fff;
font-weight: bold;
margin-right: 1ex;
padding-right: 1ex;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel .link:last-child {
neko259
Changed themes.
r36 border-left: 1px solid #fff;
border-right: none;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 float: right;
neko259
Changed themes.
r36 margin-left: 1ex;
margin-right: 0;
padding-left: 1ex;
padding-right: 0;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel::after, .post::after {
neko259
Changed themes.
r36 clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
visibility: hidden;
}
p {
margin-top: .5em;
margin-bottom: .5em;
}
.post-form-w {
display: table;
background: #333344;
border-radius: 5px;
color: #fff;
padding: 10px;
margin: 5px
}
.form-row {
display: table-row;
}
.form-label, .form-input {
display: table-cell;
}
.form-label {
padding: .25em 1ex .25em 0;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 vertical-align: top;
neko259
Changed themes.
r36 }
.form-input {
padding: .25em 0;
}
.post-form input, .post-form textarea {
background: #333;
color: #fff;
border: solid 1px;
padding: 0;
width: 100%;
}
.form-submit {
border-bottom: 2px solid #ddd;
margin-bottom: .5em;
padding-bottom: .5em;
}
.form-title {
font-weight: bold;
}
input[type="submit"] {
background: #222;
border: solid 1px #fff;
color: #fff;
}
blockquote {
border-left: solid 2px;
padding-left: 5px;
color: #B1FB17;
margin: 0;
neko259
Fixed post display in admin page. Fixed css in Mystic Dark.
r40 }
.post > .image {
float: left; margin: 0 1ex .5ex 0;
}
.post > .metadata {
clear: left;
neko259
Fixed get computing. Visually differing get posts in thread.
r42 }
.get {
font-weight: bold;
color: #d55;
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 }
* {
text-decoration: none;
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 }
.dead_post {
background-color: #442222;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }