##// END OF EJS Templates
Removed the image height hardcoded in the CSS. It is useless now because of...
Removed the image height hardcoded in the CSS. It is useless now because of the refmaps that move the focus on page loading. Fixed validation in the thread id.

File last commit:

r134:23ff671e default
r134:23ff671e default
Show More
base_page.css
280 lines | 3.6 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
}
neko259
Merged with the old validation changes.
r75 .input_field {
}
.input_field_name {
}
.input_field_error {
color: #FF0000;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 .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;
}
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;
}
.post_id {
color: #fff380;
}
neko259
#44 Show last replies in the threads list.
r59 .post, .dead_post {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #333;
margin: 5px;
padding: 10px;
neko259
Made borders rectangle in the MD theme.
r131 border: solid 1px #888;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 clear: left;
neko259
Fixed wrapping of the long links on the small screes (mobile phones). This fixes #15
r73 word-wrap: break-word;
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
Added form validation, added style for the tag panel. This fixes #13
r76 .navigation_panel, .tag_info {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #444;
margin: 5px;
padding: 10px;
neko259
Made borders rectangle in the MD theme.
r131 border: solid 1px #888;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 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;
neko259
Made borders rectangle in the MD theme.
r131 border: solid 1px #888;
neko259
Changed themes.
r36 color: #fff;
padding: 10px;
margin: 5px
}
.form-row {
display: table-row;
}
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 .form-label, .form-input, .form-errors {
neko259
Changed themes.
r36 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;
}
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 .form-errors {
padding-left: 1ex;
font-weight: bold;
vertical-align: top;
}
neko259
Changed themes.
r36 .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 {
neko259
Added fixed image length. This fixes #52
r88 float: left;
margin: 0 1ex .5ex 0;
min-width: 1px;
text-align: center;
display: table-row;
neko259
Fixed post display in admin page. Fixed css in Mystic Dark.
r40 }
.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
#12 Added markdown extension for reflinks, quotes and autolinks.
r52 }
.quote {
neko259
Changed parser to show quotes and reflinks as they are posted, not with borders and '#' character.
r90 color: #92cf38;
neko259
#12 Added spoilers and comments.
r56 }
.spoiler {
background: white;
color: white;
}
.spoiler:hover {
neko259
Made spoiler in MD make text black on hover, not background.
r133 color: black;
neko259
#12 Added spoilers and comments.
r56 }
.comment {
neko259
Made comments prettier in Mystic Dark.
r99 color: #eb2;
font-style: italic;
neko259
Limit number of tags shown in the navigation bar to only the most popular ones.
r57 }
a:hover {
text-decoration: underline;
}
neko259
#44 Show last replies in the threads list.
r59
.last-replies {
margin-left: 3ex;
}
.thread {
margin-bottom: 3ex;
}
.post:target {
border: solid 2px white;
neko259
#12 Fixed formatting of comments and links. Added a style for target post in the white theme.
r62 }
pre{
white-space:pre-wrap
neko259
Added js popup for image viewing.
r63 }
li {
list-style-position: inside;
neko259
Changed fancybox skin a bit.
r65 }
.fancybox-skin {
position: relative;
background-color: #fff;
color: #ddd;
text-shadow: none;
}
.fancybox-image {
border: 1px solid black;
neko259
#37 Added javascript gallery mode for viewing thread in image-only mode.
r66 }
.image-mode-tab {
background: #444;
color: #eee;
display: table;
margin: 5px;
padding: 5px;
neko259
Made 1 more element square in the MD theme.
r132 border: 1px solid #888;
neko259
#37 Added javascript gallery mode for viewing thread in image-only mode.
r66 }
.image-mode-tab > label {
margin: 0 1ex;
}
.image-mode-tab > label > input {
margin-right: .5ex;
}
#posts-table {
margin: 5px;
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 }
.tag_info {
display: table;
}
.tag_info > h2 {
margin: 0;
neko259
Made post info darker in Mystic Dark theme.
r94 }
.post-info {
color: #ddd;
}
neko259
Added missing JS translations. Added styles for refmaps. This refs #36
r124
.refmap {
font-size: 0.9em;
color: #ccc;
margin-top: 1em;
neko259
Made borders rectangle in the MD theme.
r131 }