-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite CSS as Sass (.scss) files for better organization/loading
- Loading branch information
user.email
committed
Nov 25, 2018
1 parent
0d36172
commit a6d7e9f
Showing
56 changed files
with
1,751 additions
and
1,511 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.