Blocksworld Wiki
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*====FONT====*/

body:not(#cssEditorContainer) {
    font-family:'Helvetica Neue', Arial, sans-serif;
}

/*=====TYPOGRAPHY=====*/

/*HEADINGS*/

/*Heading 2*/
/*
.WikiaArticle h2 {
    line-height: 30px !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 0;
    margin-top: 30px !important;
    margin-bottom: 24px !important;
    color: rgb(62, 62, 62);
}*/

/*Heading 3*/
/*
.WikiaArticle h3 {
    line-height: 24px !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-top: 22px !important;
    margin-bottom: 18px !important;
}*/

/*Heading 4, 5 and 6*/
/*
.WikiaArticle h4 {
    line-height: 20px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-top: 18px !important;
    margin-bottom: 16px !important;
}*/

/*PARAGRAPHS*/

.WikiaArticle p {
    font-size: 17px !important;
    line-height: 1.4em !important;
    margin:14px 0 !important;
}

.WikiaArticle pre {
    line-height: 1.2em;
}

/*=====DESIGN=====*/

/*NAVIGATION*/

/*Remove 1px light lines*/

.navbackground div {
    display: none;
}

/*...on marked tab*/

.nav-item.marked a {
    border: none !important;
}

/*Remove marked tab border radius*/

.nav-item.marked {
    border-radius: 0 !important;
}

/*BUTTONS*/

/*Basic buttons*/

.wikia-button, button {
    box-sizing: border-box;
    height: auto !important;
    min-height: 30px;
    padding: 5px 10px !important;
    background: none !important;
    background-color: #1976D2 !important;
    border: none !important;
    border-radius: 0 !important;
    color: white;
    transition: all 0.3s;
}

/*Menu buttons (except "contribute")*/

.wikia-menu-button:not(.contribute) {
    height: auto !important;
    min-height: 30px;
    background: none !important;
    background-color: #1976D2 !important;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.3s;
}

/*Menu buttons childs*/

/*left*/

.wikia-menu-button:not(.contribute) a, .wikia-menu-button:not(.contribute) input {
    height: auto !important;
    background: none !important;
    border: none !important;
    padding: 5px 5px 5px 10px !important;
}

/*right*/

.wikia-menu-button:not(.contribute) .drop {
    height: auto !important;
    background: none !important;
    border: none !important;
}

/*Secondary buttons*/

.wikia-button.secondary, .wikia-menu-button.secondary {
    background: none !important;
    border: solid 1px #9E9E9E !important;
    border-radius: 0 !important;
    padding: 4px 5px 4px 10px !important;
    transition: all 0.3s;
}

/*"Comments bubbles" workaround*/

.wikia-button.secondary .commentsbubble {
    color: #3a3a3a !important;
}

/*Buttons animations*/

/*normal*/

.wikia-button:hover, button:hover, .wikia-menu-button:hover {
    background-color: #0D47A1 !important;
    color: white !important;
    transition: all 0.3s;
}

/*secondary*/

.wikia-button.secondary:hover, .wikia-menu-button.secondary:hover {
    background-color: #1976D2 !important;
    border-color: #1976D2 !important;
    color: white !important;
    transition: all 0.3s;
}


/*PACKS LIST TEMPLATE*/

table.packs-list {
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    width: 700px;
    margin: auto;
}

.packs-list tbody {
    width: 100%;
    height: 100%;
}

.packs-list tr {
    width: 100%;
    height: 309px;
}

.packs-list td {
    padding: 10px 0;
    box-sizing: border-box;
}

.packs-list td.large {
    width: 100%;
}

.packs-list td.small {
    width: 50%;
}

.packs-list td.small:nth-child(1) {
    text-align: left;
}

.packs-list td.small:nth-child(2) {
    text-align: right;
}

.packs-list img {
    width: auto;
    height: 100%;
}
Advertisement