Difference between revisions of "User:Polymorph-Ash/vector.css"
Jump to navigation
Jump to search
| Line 47: | Line 47: | ||
border:none; | border:none; | ||
} | } | ||
/*Welcome page/main page*/ | |||
.header-box { | |||
background-image:var(--background-image); | |||
background-repeat:no-repeat; | |||
background-clip:border-box; | |||
background-position:0% 75%; | |||
background-size:cover; | |||
background-attachment: fixed; | |||
color:var(--whitetextandbg); | |||
font-size:150%; | |||
text-shadow:0px 0px 15px black; | |||
font-weight:bold; | |||
font-family:var(--headerfont); | |||
border-color:var(--bordercolour); | |||
border-radius:15px; | |||
border-style:groove; | |||
border-width:3px; | |||
box-shadow:none; | |||
outline:1px solid var(--whitetextandbg); | |||
outline-offset:-6px; | |||
} | |||
/*main body*/ | |||
#content.mw-body { | #content.mw-body { | ||
Revision as of 20:31, 17 January 2026
:root {
--maintext: #2a160f;
--headertext: #3c3f44;
--whitetextandbg: #fffff3;
--bordercolour: #5f3529;
--smallborders: #9c8668;
--orange: 223, 156, 52;
--mainfont: Verdana, Tahoma, sans-serif;
--headerfont: Georgia, serif;
--tableheaders: #eacf98;
--tablecolour2: #f2e5c0;
--tablecolour3: #ffeabd;
--background-image: url('https://wiki.polymorph.games/found/images/0/05/Keyart02_Clean_noLogo_HD.png');
}
/* background layer */
body {
background-image:var(--background-image);
background-repeat:no-repeat;
background-clip:border-box;
background-attachment:fixed;
background-position:center;
background-size:cover;
}
/* parallax header effect */
.header-box {
background-image: var(--background-image);
background-position: center 75%;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
color: var(--whitetextandbg);
font-size: 150%;
font-weight: bold;
font-family: var(--headerfont);
text-shadow: 0px 0px 15px black;
border-radius: 10px;
border: 3px groove var(--bordercolour);
outline: 1px solid var(--whitetextandbg);
outline-offset: -6px;
}
/*top menu*/
#mw-head, #mw-page-base {
background:transparent;
border:none;
}
/*Welcome page/main page*/
.header-box {
background-image:var(--background-image);
background-repeat:no-repeat;
background-clip:border-box;
background-position:0% 75%;
background-size:cover;
background-attachment: fixed;
color:var(--whitetextandbg);
font-size:150%;
text-shadow:0px 0px 15px black;
font-weight:bold;
font-family:var(--headerfont);
border-color:var(--bordercolour);
border-radius:15px;
border-style:groove;
border-width:3px;
box-shadow:none;
outline:1px solid var(--whitetextandbg);
outline-offset:-6px;
}
/*main body*/
#content.mw-body {
background-color:rgba(255, 234, 189, 0.97);
box-shadow: inset 0 0 10vw 1.5vw #d4b57e;
border-color:var(--bordercolour);
border-radius:10px;
border-style:solid;
border-width:0.15em;
margin-right:1%;
}
.mainpage-buttons ul li {
background-color:var(--tableheaders);
box-shadow: inset -0.05vw -0.05vw 0.1vw 0.1vw #d4b57e;
border-color:var(--bordercolour);
border-radius:5px;
}