forked from GithubBackups/vichan
[#184] tomorrow.css.
This commit is contained in:
parent
2d6d449bd2
commit
e90eca7339
@ -873,9 +873,10 @@
|
|||||||
// Custom stylesheets available for the user to choose. See the "stylesheets/" folder for a list of
|
// Custom stylesheets available for the user to choose. See the "stylesheets/" folder for a list of
|
||||||
// available stylesheets (or create your own).
|
// available stylesheets (or create your own).
|
||||||
$config['stylesheets']['Yotsuba B'] = ''; // Default; there is no additional/custom stylesheet for this.
|
$config['stylesheets']['Yotsuba B'] = ''; // Default; there is no additional/custom stylesheet for this.
|
||||||
$config['stylesheets']['Yotsuba'] = 'yotsuba.css';
|
$config['stylesheets']['Yotsuba'] = 'yotsuba.css';
|
||||||
// $config['stylesheets']['Futaba'] = 'futaba.css';
|
// $config['stylesheets']['Futaba'] = 'futaba.css';
|
||||||
// $config['stylesheets']['Dark'] = 'dark.css';
|
// $config['stylesheets']['Dark'] = 'dark.css';
|
||||||
|
$config['stylesheets']['Tomorrow'] = 'tomorrow.css';
|
||||||
|
|
||||||
// The prefix for each stylesheet URI. Defaults to $config['root']/stylesheets/
|
// The prefix for each stylesheet URI. Defaults to $config['root']/stylesheets/
|
||||||
// $config['uri_stylesheets'] = 'http://static.example.org/stylesheets/';
|
// $config['uri_stylesheets'] = 'http://static.example.org/stylesheets/';
|
||||||
@ -1222,21 +1223,21 @@
|
|||||||
$config['capcode'] = ' <span class="capcode">## %s</span>';
|
$config['capcode'] = ' <span class="capcode">## %s</span>';
|
||||||
|
|
||||||
// "## Custom" becomes lightgreen, italic and bold:
|
// "## Custom" becomes lightgreen, italic and bold:
|
||||||
//$config['custom_capcode']['Custom'] ='<span class="capcode" style="color:lightgreen;font-style:italic;font-weight:bold"> ## %s</span>';
|
$config['custom_capcode']['Custom'] ='<span class="capcode" style="color:lightgreen;font-style:italic;font-weight:bold"> ## %s</span>';
|
||||||
|
|
||||||
// "## Mod" makes everything purple, including the name and tripcode:
|
// "## Mod" makes everything purple, including the name and tripcode:
|
||||||
//$config['custom_capcode']['Mod'] = array(
|
$config['custom_capcode']['Mod'] = array(
|
||||||
// '<span class="capcode" style="color:purple"> ## %s</span>',
|
'<span class="capcode" style="color:purple"> ## %s</span>',
|
||||||
// 'color:purple', // Change name style; optional
|
'color:purple', // Change name style; optional
|
||||||
// 'color:purple' // Change tripcode style; optional
|
'color:purple' // Change tripcode style; optional
|
||||||
//);
|
);
|
||||||
|
|
||||||
// "## Admin" makes everything red and bold, including the name and tripcode:
|
// "## Admin" makes everything red and bold, including the name and tripcode:
|
||||||
//$config['custom_capcode']['Admin'] = array(
|
$config['custom_capcode']['Admin'] = array(
|
||||||
// '<span class="capcode" style="color:red;font-weight:bold"> ## %s</span>',
|
'<span class="capcode" style="color:red;font-weight:bold"> ## %s</span>',
|
||||||
// 'color:red;font-weight:bold', // Change name style; optional
|
'color:red;font-weight:bold', // Change name style; optional
|
||||||
// 'color:red;font-weight:bold' // Change tripcode style; optional
|
'color:red;font-weight:bold' // Change tripcode style; optional
|
||||||
//);
|
);
|
||||||
|
|
||||||
// Enable the moving of single replies
|
// Enable the moving of single replies
|
||||||
$config['move_replies'] = false;
|
$config['move_replies'] = false;
|
||||||
|
152
stylesheets/tomorrow.css
Normal file
152
stylesheets/tomorrow.css
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
/** TOMORROW, I'LL ...
|
||||||
|
|
||||||
|
A cool dark skin by 7185.
|
||||||
|
https://github.com/7185/8chan-tomorrow/
|
||||||
|
|
||||||
|
**/
|
||||||
|
body {
|
||||||
|
background:#1d1f21 none;
|
||||||
|
color:#C5C8C6
|
||||||
|
}
|
||||||
|
h1,div.subtitle {
|
||||||
|
color:#C5C8C6!important
|
||||||
|
}
|
||||||
|
a:link,a:visited,p.intro a.email span.name {
|
||||||
|
color:#81a2be
|
||||||
|
}
|
||||||
|
a:link:hover {
|
||||||
|
color:#5F89AC
|
||||||
|
}
|
||||||
|
a.post_no {
|
||||||
|
color:#C5C8C6
|
||||||
|
}
|
||||||
|
a.post_no:hover {
|
||||||
|
color:#5F89AC!important
|
||||||
|
}
|
||||||
|
div.banner {
|
||||||
|
background-color:#1d1f21
|
||||||
|
}
|
||||||
|
div.post.reply {
|
||||||
|
background-color:#282a2e;
|
||||||
|
border:1px solid #282a2e;
|
||||||
|
margin-bottom:2px;
|
||||||
|
margin-left:16px;
|
||||||
|
margin-top:2px
|
||||||
|
}
|
||||||
|
div.post.reply.highlighted {
|
||||||
|
background-color:#1d1d21;
|
||||||
|
border:1px solid #111
|
||||||
|
}
|
||||||
|
div.post.reply div.body a {
|
||||||
|
color:#81a2be
|
||||||
|
}
|
||||||
|
div.post.reply div.body a:hover {
|
||||||
|
color:#5F89AC
|
||||||
|
}
|
||||||
|
div.post-hover {
|
||||||
|
border:1px solid #000!important;
|
||||||
|
box-shadow:none!important
|
||||||
|
}
|
||||||
|
div.thread:hover {
|
||||||
|
background-color:#1d1f21;
|
||||||
|
border-color:#000
|
||||||
|
}
|
||||||
|
p.intro span.subject {
|
||||||
|
color:#b294bb
|
||||||
|
}
|
||||||
|
p.intro span.name {
|
||||||
|
color:#C5C8C6
|
||||||
|
}
|
||||||
|
span.quote {
|
||||||
|
color:#adbd68
|
||||||
|
}
|
||||||
|
span.heading {
|
||||||
|
color:#F20
|
||||||
|
}
|
||||||
|
form table tr th {
|
||||||
|
background:#282a2e;
|
||||||
|
border:1px solid #111;
|
||||||
|
color:#C5C8C6
|
||||||
|
}
|
||||||
|
div.ban h2 {
|
||||||
|
background:#FCA;
|
||||||
|
color:inherit
|
||||||
|
}
|
||||||
|
div.ban {
|
||||||
|
border-color:#800
|
||||||
|
}
|
||||||
|
div.ban p {
|
||||||
|
color:#000
|
||||||
|
}
|
||||||
|
div.pages {
|
||||||
|
background:#1d1f21;
|
||||||
|
border-color:#1d1f21
|
||||||
|
}
|
||||||
|
div.pages a.selected {
|
||||||
|
color:#81a2be;
|
||||||
|
font-weight:700
|
||||||
|
}
|
||||||
|
div.boardlist {
|
||||||
|
background-color:#282a2e!important;
|
||||||
|
color:#C5C8C6
|
||||||
|
}
|
||||||
|
div.boardlist:nth-of-type(1) {
|
||||||
|
border-bottom:1px solid #111!important;
|
||||||
|
box-shadow:0 0 3px 0 #111
|
||||||
|
}
|
||||||
|
div.boardlist a {
|
||||||
|
color:#81a2be
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
background-color:#282a2e;
|
||||||
|
border:0;
|
||||||
|
height:1px
|
||||||
|
}
|
||||||
|
div#options_div {
|
||||||
|
background-color:#282a2e
|
||||||
|
}
|
||||||
|
div.options_tab_icon {
|
||||||
|
color: #AAA
|
||||||
|
}
|
||||||
|
div.options_tab_icon:hover {
|
||||||
|
background-color: #111
|
||||||
|
}
|
||||||
|
div.options_tab_icon.active {
|
||||||
|
color: #F20
|
||||||
|
}
|
||||||
|
div.blotter {
|
||||||
|
color:#F20
|
||||||
|
}
|
||||||
|
span.omitted {
|
||||||
|
color:#707070
|
||||||
|
}
|
||||||
|
p.intro a, span.omitted a {
|
||||||
|
text-decoration:none
|
||||||
|
}
|
||||||
|
form#quick-reply {
|
||||||
|
padding-right:1px;
|
||||||
|
border: 1px solid #111
|
||||||
|
}
|
||||||
|
span.capcode {
|
||||||
|
background-color: #000;
|
||||||
|
padding:2px 5px;
|
||||||
|
border-radius: 10px
|
||||||
|
}
|
||||||
|
div#watchlist {
|
||||||
|
border:1px solid #111;
|
||||||
|
background-color:#282a2e
|
||||||
|
}
|
||||||
|
div#watchlist a,a.watchThread {
|
||||||
|
color:#81a2be;
|
||||||
|
text-decoration:none
|
||||||
|
}
|
||||||
|
div#watchlist a:hover,a.watchThread:hover {
|
||||||
|
color:#5F89AC
|
||||||
|
}
|
||||||
|
/* Keep small thumbnails */
|
||||||
|
a:not([data-expanded="true"]) .post-image{
|
||||||
|
width:auto!important;
|
||||||
|
height:auto!important;
|
||||||
|
max-height:200px!important;
|
||||||
|
max-width:200px!important
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user