Skip to content

Commit

Permalink
Rewrite CSS as Sass (.scss) files for better organization/loading
Browse files Browse the repository at this point in the history
  • Loading branch information
user.email committed Nov 25, 2018
1 parent 0d36172 commit a6d7e9f
Show file tree
Hide file tree
Showing 56 changed files with 1,751 additions and 1,511 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ http://gochan.org
### For developers (using Vagrant)
1. Install Vagrant and Virtualbox. Vagrant lets you create a virtual machine and run a custom setup/installation script to make installation easier and faster.
2. From the command line, cd into vagrant/ and run `vagrant up`
3. After it finishes installing the Ubuntu VM, follow the printed instructions.
3. After it finishes installing the Ubuntu VM, follow the printed instructions.

### Theme development
See `sass/README.md` for information on working with Sass and stylesheets.

120 changes: 120 additions & 0 deletions html/css/burichan.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
h1#board-title {
font-family: serif !important;
font-size: 24pt;
color: #AF0A0F;
}

.postblock {
background: #9988EE;
}

div.file-info {
font-size: 12px;
font-family: sans-serif;
}

.postername {
font-size: 12px;
font-family: serif;
color: #117743;
font-weight: 800;
}

.reply, .thread-ddown-menu {
background: #D6DAF0;
}

.thread-ddown-menu {
border: 1px solid #9295a4;
}

#site-title {
font-family: sans-serif;
padding-top: 88px;
}

#site-slogan {
font-size: 9pt;
font-style: italic;
}

.tab {
background-color: #dfdffe;
border: 1px solid #9295a4;
}

#current-tab {
margin-top: 16px;
border-bottom: 0px;
}

#current-tab, div.section-title-block {
background-color: #bfc6e7;
}

.loginbox input {
height: 20%;
}

.manage-header {
background-color: #EEF2FF;
border-radius: 8px;
}

body {
font: sans-serif 12pt;
background: #EEF2FF;
margin: 8px;
}

a, a:visited {
color: #34345C;
text-decoration: none;
}

h1 {
margin: 0;
text-align: center;
}

h2 {
margin: 0px 0px 0px 0px;
font-size: 140%;
}

h2 a {
text-decoration: none;
color: #550;
}

h3 {
margin: 0px;
text-align: center;
font-size: medium;
}

h1, h2 {
font-family: Verdana, Tahoma, sans-serif;
}

h1, h2, h3 {
font-weight: bold;
color: #333;
}

div#topbar {
-moz-box-shadow: 3px 3px 5px 6px #555555;
-ms-box-shadow: 3px 3px 5px 6px #555555;
-webkit-box-shadow: 3px 3px 5px 6px #555555;
box-shadow: 3px 3px 5px 6px #555555;
height: 30px;
}

div#topbar, .topbar-item, .topbar-item:visited, .dropdown-button, .dropdown-menu, .dropdown-menu a {
background-color: #000A89;
color: #EEF2FF !important;
}

div#footer {
font-size: 8pt;
}
179 changes: 0 additions & 179 deletions html/css/burichan/front.css

This file was deleted.

Loading

0 comments on commit a6d7e9f

Please sign in to comment.