(Created page with "→All CSS here will be loaded for users of the Vector skin: body { background-color: #00151b; background-image: radial-gradient(#00203c,black 100%); } #mw-page-base { background-color: #00151b; background-image: radial-gradient(#00203c,black 100%); } body::after { background: repeating-linear-gradient(0deg,rgba(0,128,255,0),rgba(0,128,255,0.1) 4px,rgba(0,128,255,0.1) 4px,rgba(0,128,255,0) 7px); } .mw-body { background-color: #007ad0; ba...") |
(gradient) |
||
Line 4: | Line 4: | ||
background-color: #00151b; | background-color: #00151b; | ||
background-image: radial-gradient(#00203c,black 100%); | background-image: radial-gradient(#00203c,black 100%); | ||
} | |||
body::after { | |||
content: ""; | |||
background: repeating-linear-gradient(0deg,rgba(0,128,255,0),rgba(0,128,255,0.1) 4px,rgba(0,128,255,0.1) 4px,rgba(0,128,255,0) 7px); | |||
} | } | ||
Line 12: | Line 17: | ||
body::after { | body::after { | ||
content: ""; | |||
position: fixed; | |||
top: 0; | |||
left: 0; | |||
margin: 0; | |||
width: 100vw; | |||
height: 100vh; | |||
background: repeating-linear-gradient(0deg,rgba(0,128,255,0),rgba(0,128,255,0.1) 4px,rgba(0,128,255,0.1) 4px,rgba(0,128,255,0) 7px); | background: repeating-linear-gradient(0deg,rgba(0,128,255,0),rgba(0,128,255,0.1) 4px,rgba(0,128,255,0.1) 4px,rgba(0,128,255,0) 7px); | ||
pointer-events: none; | |||
} | } | ||
Revision as of 21:12, 15 March 2022
/* All CSS here will be loaded for users of the Vector skin */ body { background-color: #00151b; background-image: radial-gradient(#00203c,black 100%); } body::after { content: ""; background: repeating-linear-gradient(0deg,rgba(0,128,255,0),rgba(0,128,255,0.1) 4px,rgba(0,128,255,0.1) 4px,rgba(0,128,255,0) 7px); } #mw-page-base { background-color: #00151b; background-image: radial-gradient(#00203c,black 100%); } body::after { content: ""; position: fixed; top: 0; left: 0; margin: 0; width: 100vw; height: 100vh; background: repeating-linear-gradient(0deg,rgba(0,128,255,0),rgba(0,128,255,0.1) 4px,rgba(0,128,255,0.1) 4px,rgba(0,128,255,0) 7px); pointer-events: none; } .mw-body { background-color: #007ad0; background-image: radial-gradient(#02131fd9,#000 200%); border: 1px solid #00c5ffa3; border-radius: 15px; box-shadow: 0 0 14px rgba(14,119,192,.75),inset 0 0 14px rgba(14,119,192,.75); }