1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-05 12:56:22 -07:00

use QR file input when posting, improve front page formatting

This commit is contained in:
user.email 2018-12-04 15:38:19 -08:00
parent 4ec04d799b
commit 4fa467933b
10 changed files with 101 additions and 96 deletions

View file

@ -6,7 +6,14 @@
}
@mixin box-sizing($sizing) {
box-sizing: $sizing;
-moz-box-sizing: $sizing;
-webkit-box-sizing: $sizing;
box-sizing: $sizing;
}
@mixin border-radius($properties...) {
-moz-border-radius: $properties;
-ms-border-radius: $properties;
-webkit-border-radius: $properties;
border-radius: $properties;
}

View file

@ -1,10 +1,3 @@
div.page {
float: left;
width: 75%;
margin-left: 8px;
overflow-y: hidden;
}
div.section-block {
margin-bottom: 8px;
div.section-title-block {
@ -39,10 +32,13 @@ div#top-pane {
}
}
col#recent {
width:22%;
}
#tab-bar {
margin-bottom: 0px;
margin-top: 2px;
margin-left: -24px;
display: inline;
.tab {
display: inline;
padding: 0px 8px 0px 8px;
@ -50,12 +46,9 @@ div#top-pane {
}
div#recent-posts {
width:22%;
float: right;
margin-right: 8px;
display: inline-block;
img {
float: left;
padding-right: 8px;
}
div.section-body {

View file

@ -9,6 +9,7 @@
}
body {
background-color: #363942;
background-image: url(res/pipes_bg.png);
color: #d8d0b9;
font: $font;