monoxide
rating: +3+x

Name: monoxide

Author: OxygenNineOxygenNine
License: Creative Commons Attribution-ShareAlike 3.0 License

Tags: black css3 sidebar topbar white

Supports top bar menu *: yes
Supports side bar menu *: yes
* depends on tags: topbar and sidebar

Description:

Monoxide is a CSS layout that attempts to mimic modern website layouts, with a layout that references the Bedrock Theme. Its features include:

  • A #header that resides at the top of the page;
  • A #side-bar for hover callouts;
  • Icons implemented entirely in Awesome Font, including the editor;
  • Site theme colors, headers, subheaders and logos defined using CSS variables;
  • Full platform adaptation;
  • More Div styles;
  • and much more.

How to install

  • go to: your wiki admin panel » appearance » themes
  • choose External CSS theme
  • supply the following URL as the CSS location
https://files.themes.obscurative.ru/local--code/monoxide

Code

Notes

Pro Tips:

CSS Variables:

:root {
    --mox-theme-color: #0031F5; /* Theme Color */
    --mox-theme-dark-color: #0025B8; /* Theme Color Dark */
    --mox-theme-light-color: #335CFF; /* Theme Color Light */
    --mox-bg-color: #FAFAFA; /* Background Color */
    --mox-text-color: #141414; /* Text Color */
    --mox-layer-dark-1: #262626; /* Dark Gray I */
    --mox-layer-dark-2: #404040; /* Dark Gray I */
    --mox-layer-dark-3: #595959; /* Dark Gray I */
    --mox-layer-light-1: #F2F2F2; /* Light Gray I */
    --mox-layer-light-2: #D9D9D9; /* Light Gray I */
    --mox-layer-light-3: #BFBFBF; /* Light Gray I */
    --mox-bgblur-front-color: rgba(255,255,255,0.85); /* For #top-bar's menu background */
    --mox-warn-color: #FF335C; /* Danger Color */
    --mox-accept-color: #33FF70; /* Safe Color */
    --mox-alter-color: #FFD633; /* Warning Color */
    --mox-header-title: "Wikidot Site Name"; /* Header Title */
    --mox-header-subtitle: "subtitle"; /* Header subtitle */
    --mox-header-logo: url(http://oxygennine.wikidot.com/local--files/system:files/scp-logo-small-black.svg); /* LOGO url */
    --mox-page-width: 75vw; /* Page Width */
}

CUSTOM DIVS

[[div class="blockquote"]]

[[div class="modal"]],[[div class="wiki-note"]],[[note]]
OR
[[div class="mox-modal"]]

[[div class="notation"]] OR [[div class="mox-note"]]

[[div class="jotting"]] , [[div class="papernote"]]
OR
[[div class="mox-notice"]]

[[div class="document"]] OR [[div class="mox-card"]]

[[div class="darkdocument"]] OR [[div class="mox-card mox-dark"]]

[[div class="floatbox"]] OR [[div class="mox-float mox-f-left"]]

[[div class="floatbox right"]] OR [[div class="mox-float mox-f-left"]]

Use these to change the theme to other modes:

DARKMODE

:root {
    --mox-theme-color: #3353d1;
    --mox-theme-dark-color: #466af6;
    --mox-theme-light-color: #5678ff;
    --mox-bg-color: #202020;
    --mox-text-color: #F9F9F9;
    --mox-layer-dark-1: #FAFAFA;
    --mox-layer-dark-2: #DEDEDE;
    --mox-layer-dark-3: #A1A1A1;
    --mox-layer-light-1: #333333;
    --mox-layer-light-2: #515151;
    --mox-layer-light-3: #505050;
    --mox-bgblur-front-color: rgba(20,20,20,0.85);
    --mox-warn-color: #bc3651;
    --mox-accept-color: #32c25d;
    --mox-alter-color: #FFD633;
}
 
.code {
    color: var(--mox-layer-light-1);
    background-image: linear-gradient(var(--mox-layer-dark-1) 1.7em,var(--mox-layer-dark-2) 1.7em);
}
 
#footer {
    background: var(--mox-bg-color);
    color: var(--mox-layer-dark-3);
}
 
#footer a {
    color: var(--mox-layer-dark-2);
}
 
#license-area {
    color: var(--mox-layer-dark-2);
    background: var(--mox-bg-color);
}
 
#license-area a {
    color: var(--mox-layer-dark-1);
}
 
#license-area a:hover {
    color: var(--mox-theme-color);
}

REDMODE

:root {
    --mox-theme-color: #d13333;
    --mox-theme-dark-color: #f64646;
    --mox-theme-light-color: #ff5656;
    --mox-bg-color: #000000;
    --mox-text-color: #e4e4e4;
    --mox-layer-dark-1: #FAFAFA;
    --mox-layer-dark-2: #DEDEDE;
    --mox-layer-dark-3: #A1A1A1;
    --mox-layer-light-1: #1b1b1b;
    --mox-layer-light-2: #292929;
    --mox-layer-light-3: #505050;
    --mox-bgblur-front-color: rgba(20,20,20,0.85);
    --mox-warn-color: #bc3651;
    --mox-accept-color: #32c25d;
    --mox-alter-color: #FFD633;
}
 
body {
    background-image: url(http://oxygennine.wikidot.com/local--files/system:files/redmodebg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

ROUND HEADER USER AVATAR

:root {
    --mox-theme-color: #d13333;
    --mox-theme-dark-color: #f64646;
    --mox-theme-light-color: #ff5656;
    --mox-bg-color: #000000;
    --mox-text-color: #e4e4e4;
    --mox-layer-dark-1: #FAFAFA;
    --mox-layer-dark-2: #DEDEDE;
    --mox-layer-dark-3: #A1A1A1;
    --mox-layer-light-1: #1b1b1b;
    --mox-layer-light-2: #292929;
    --mox-layer-light-3: #505050;
    --mox-bgblur-front-color: rgba(20,20,20,0.85);
    --mox-warn-color: #bc3651;
    --mox-accept-color: #32c25d;
    --mox-alter-color: #FFD633;
}
 
body {
    background-image: url(http://oxygennine.wikidot.com/local--files/system:files/redmodebg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

UI Font is Noto Sans SC/Montserrat.

Text Font is Noto Sans SC/Segoe UI.

Mono Font is Oxygen Mono/Noto Sans SC.


Special Thanks to:

DouglasLiuDouglasLiu
Dr HormressDr Hormress
LiurdLiurd
RomutaRomuta
KcorenaKcorena
MrPasserbyMrPasserby

That's all. Maybe.

Similar themes

80.jpg
installbutton.png

fake-wikidot-standard

Author: LiurdLiurd
Rating: 1, Comments: 0

Tags: sidebar topbar

80.jpg
installbutton.png

Gnl 109557431160

Author: MukapogxMukapogx
Rating: 0, Comments: 0

Tags: sidebar topbar

Browse themes by tag

Comments

Add a New Comment
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License