##// END OF EJS Templates
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).

File last commit:

r33:45bad15a default
r33:45bad15a default
Show More
base_page.css
85 lines | 1014 B | text/css | CssLexer
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 html {
neko259
Changed metadata design. Make space split tags.
r31 background: #555;
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 color: #ffffff;
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 }
#admin_panel {
background: #FF0000;
color: #00FF00
}
.title {
font-weight: bold;
color: #ffcc00;
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 }
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 .post-form {
text-align: left;
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 display: table;
neko259
Implemented form validation. When the form fails validation, showing the index page.
r29 border-radius: 5px;
padding: 5px;
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 margin: 5px;
neko259
Implemented form validation. When the form fails validation, showing the index page.
r29 background: #334;
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 }
.form-row {
display: table-row;
}
.form-input {
display: table-cell;
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 }
.link {
neko259
Added thread metadata (replies, images, gets) to the threads list.
r30 color: #afdcec;
neko259
Added a text area to the posting form. Added a basic CSS style. Changed threads list a bit.
r16 }
.link:hover {
neko259
Added thread metadata (replies, images, gets) to the threads list.
r30 color: #fff380;
neko259
Added a page to view the thread.
r20 }
.post_id {
color: #ffffff;
neko259
Added images upload. Changed the design a bit. Reformatted some code by PEP 8. Changed the urls: not the main site is located at /, not /boards/.
r22 }
.block {
display: inline-block;
vertical-align: top;
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 }
.tag {
neko259
Added post publication date to the templates.
r26 color: #b4cfec;
neko259
Added localization (not fully working). Added tags posting. Changed the design a bit.
r24 }
.tag:hover {
neko259
Added post publication date to the templates.
r26 color: #d0edb4;
}
.post_id {
color: #fff380;
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 }
.post {
neko259
Implemented form validation. When the form fails validation, showing the index page.
r29 background: #333;
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 margin: 5px;
neko259
Implemented form validation. When the form fails validation, showing the index page.
r29 padding: 10px;
neko259
Added maximum threads count parameter to the settings. Delete the old posts to preserve the max count. Small design tweaks.
r28 border-radius: 5px;
}
.form-title {
font-weight: bolder;
neko259
Added thread metadata (replies, images, gets) to the threads list.
r30 }
.metadata {
neko259
Changed metadata design. Make space split tags.
r31 padding: 2px;
margin-top: 10px;
border: solid 1px #666;
font-size: 0.9em;
color: #ddd
neko259
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).
r33 }
#navigation_panel {
background: #444;
margin: 5px;
padding: 10px;
border-radius: 5px;
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 }