merge built-in themes into one repo
This commit is contained in:
58
core/css/accform.css
Executable file
58
core/css/accform.css
Executable file
@@ -0,0 +1,58 @@
|
||||
.buttonbar {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.logincontainer {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
@media only screen and (orientation: portrait) {
|
||||
.logincontainer {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.logincontainer .assets,
|
||||
.logincontainer .accinput {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (orientation: landscape) {
|
||||
.logincontainer {
|
||||
margin-top: 10%;
|
||||
}
|
||||
|
||||
.logincontainer .assets,
|
||||
.logincontainer .accinput {
|
||||
max-width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.logincontainer .assets,
|
||||
.logincontainer .accinput {
|
||||
flex-grow: 1;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.options .option b {
|
||||
font-family: var(--spfont1);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.logincontainer .assets img {
|
||||
max-width: 100%;
|
||||
min-width: 128px;
|
||||
width: 512px;
|
||||
}
|
||||
|
||||
.logincontainer .accinput h2 {
|
||||
font-family: var(--spfont1);
|
||||
}
|
||||
|
||||
.logincontainer .separator {
|
||||
border: var(--acc-nav-separator);
|
||||
}
|
||||
|
||||
.error {
|
||||
color: var(--error);
|
||||
}
|
||||
145
core/css/bbc.css
Executable file
145
core/css/bbc.css
Executable file
@@ -0,0 +1,145 @@
|
||||
a.spoiler {
|
||||
background-color: var(--main-text);
|
||||
color: var(--main-text);
|
||||
transition-duration: 0.1s;
|
||||
}
|
||||
|
||||
a.spoiler:focus,
|
||||
a.spoiler:active,
|
||||
a.spoiler:hover {
|
||||
background-color: unset;
|
||||
color: unset;
|
||||
}
|
||||
|
||||
div.quote {
|
||||
background-color: var(--quote-bg, #cacaca);
|
||||
border: var(--quote-border, 1px solid #9b9481);
|
||||
padding: 4px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
div.quote.qreply {
|
||||
overflow: hidden;
|
||||
max-height: 128px;
|
||||
}
|
||||
|
||||
div.quote.qreply::before {
|
||||
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, var(--quote-bg) 100%);
|
||||
width: 100%;
|
||||
height: 64px;
|
||||
display: block;
|
||||
content: "";
|
||||
top: 68px;
|
||||
position: relative;
|
||||
margin-bottom: -68px;
|
||||
}
|
||||
|
||||
div.quote .subq {
|
||||
font-family: var(--spfont1, Pixio);
|
||||
margin: -4px -4px 2px -4px;
|
||||
border-bottom: var(--quote-border, 1px solid #9b9481);
|
||||
display: flex;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
div.quote .subq .userlink { flex-grow: 1; }
|
||||
|
||||
div.quote .subq .qjump a {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
div.spoiler {
|
||||
padding: 4px;
|
||||
margin: 2px;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
div.spoiler > div.contents {
|
||||
display: none;
|
||||
background-color: var(--spoiler-bg, #b0b0b0);
|
||||
border: var(--spoiler-border, 1px solid #1c1c1c);
|
||||
border-top: none;
|
||||
margin: -2px -4px;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
div.spoiler.shown > div.contents {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.spoiler > .title {
|
||||
background: var(--spoiler-header-bg, #1c1c1c);
|
||||
border-bottom: var(--spoiler-border, 1px solid #1c1c1c);
|
||||
color: var(--spoiler-header-text, #E8E8E8);
|
||||
font-family: var(--spfont1, Pixio);
|
||||
margin: -4px -4px 2px -4px;
|
||||
padding: 4px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.codeblock {
|
||||
background-color: var(--code-bg, #ffffff63);
|
||||
border: var(--menu-border, 1px solid #bdbdbd);
|
||||
color: var(--code-text, #000000);
|
||||
padding: 4px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
div.codeblock > .title {
|
||||
font-family: var(--spfont1, Pixio);
|
||||
margin: -4px -4px 2px -4px;
|
||||
padding: 4px;
|
||||
border-bottom: var(--quote-border, 1px solid #9b9481);
|
||||
}
|
||||
|
||||
div.private {
|
||||
--background: #0087ff26;
|
||||
--border: 1px solid #023ECCAB;
|
||||
background: var(--background);
|
||||
border-top: var(--border); border-bottom: var(--border);
|
||||
margin: 2px -4px;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
embed-container {
|
||||
display: inline-flex;
|
||||
vertical-align: middle;
|
||||
margin: 4px;
|
||||
width: 550px;
|
||||
height: 400px;
|
||||
background-color: #000C;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
embed-container > a {
|
||||
margin: auto;
|
||||
width: 96px;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
embed-container .flashbar {
|
||||
display: flex;
|
||||
color: white;
|
||||
height: 32px;
|
||||
padding: 0px 4px;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
embed-container .flashbar * {
|
||||
cursor: pointer;
|
||||
}
|
||||
embed-container .flashbar a:link,
|
||||
embed-container .flashbar a:visited {
|
||||
color: white;
|
||||
}
|
||||
|
||||
embed-container .flashbar a img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
embed-container .flashbar .pause {
|
||||
font-size: 24px;
|
||||
font-family: Pixio;
|
||||
}
|
||||
109
core/css/blog.css
Normal file
109
core/css/blog.css
Normal file
@@ -0,0 +1,109 @@
|
||||
body.blog-index .article {
|
||||
background-color: var(--menu-bg, #d0d0d0);
|
||||
border: var(--menu-border, 1px solid #a4a4a4);
|
||||
margin: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
body.blog-index .article p {
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
body.blog-index .article i, .article .userlink {
|
||||
font-family: var(--spfont1, Pixio);
|
||||
}
|
||||
|
||||
body.blog-index .article i { color: var(--subtitle, #525252); }
|
||||
|
||||
.body > img {
|
||||
max-width: calc(100% - 64px);
|
||||
}
|
||||
|
||||
.subject {
|
||||
margin: 4px 0px;
|
||||
}
|
||||
|
||||
#commentFrame {
|
||||
width: calc(100% - 8px);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.comment {
|
||||
background-color: var(--menu-bg, #d0d0d0);
|
||||
border: var(--menu-border, 1px solid #bdbdbd);
|
||||
margin: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.comment p {
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.comment i {
|
||||
color: var(--subtitle, #525252);
|
||||
}
|
||||
|
||||
.userlink, .userlink a {
|
||||
color: var(--main-text, #000000);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.userlink, .date i, .comment i, #comments {
|
||||
font-family: var(--spfont1, Pixio);
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: calc(100% - 8px);
|
||||
}
|
||||
|
||||
.header-title h1, .header-title .author {
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.header-title .author .userlink {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.header-title i {
|
||||
color: var(--subtitle, #525252);
|
||||
}
|
||||
|
||||
|
||||
.comment {
|
||||
background-color: var(--menu-bg, #d0d0d0);
|
||||
border: var(--menu-border, 1px solid #bdbdbd);
|
||||
margin: 4px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.comment p {
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.comment a[title="Delete"],
|
||||
.userlink,
|
||||
.comment i{
|
||||
font-family: var(--spfont1, Pixio);
|
||||
}
|
||||
|
||||
.comment i {
|
||||
color: var(--subtitle, #525252);
|
||||
}
|
||||
|
||||
.userlink, .userlink a {
|
||||
color: var(--main-text, #000000);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: calc(100% - 8px);
|
||||
}
|
||||
|
||||
#header {
|
||||
font-size: 24px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
body#comments > .header-title {
|
||||
top: -10px;
|
||||
}
|
||||
9
core/css/error.css
Normal file
9
core/css/error.css
Normal file
@@ -0,0 +1,9 @@
|
||||
.error-container p, .error-container h1 {
|
||||
text-align: center;
|
||||
font-family: var(--spfont1);
|
||||
}
|
||||
|
||||
.error-container img {
|
||||
max-height: 80vh;
|
||||
max-width: 80vw;
|
||||
}
|
||||
78
core/css/fonts.css
Executable file
78
core/css/fonts.css
Executable file
@@ -0,0 +1,78 @@
|
||||
:root {
|
||||
--spfont1: Pixio;
|
||||
--spfont2: TypeWriter;
|
||||
--spfont3: Pixelated;
|
||||
--spfont4: Joystix;
|
||||
--spfont5: VCR_OSD_MONO;
|
||||
--spfont6: BitPap;
|
||||
--spfont7: Comicoro;
|
||||
--spfont8: DOSVGA-LessPerfect;
|
||||
--spfont9: DOSVGA-MorePerfect;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: TypeWriter;
|
||||
src: url(//assets.worlio.com/fonts/type_writer/type_writer.woff),
|
||||
url(//assets.worlio.com/fonts/type_writer/type_writer.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Pixelated;
|
||||
src: url(//assets.worlio.com/fonts/pixelated/pixelated.woff),
|
||||
url(//assets.worlio.com/fonts/pixelated/pixelated.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Squarewave;
|
||||
src: url(//assets.worlio.com/fonts/Squarewave/Squarewave.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: _04B03;
|
||||
src: url(//assets.worlio.com/fonts/04b03/f04b03.woff2),
|
||||
url(//assets.worlio.com/fonts/04b03/f04b03.woff),
|
||||
url(//assets.worlio.com/fonts/04b03/f04b03.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Joystix;
|
||||
src: url(//assets.worlio.com/fonts/Joystix/joystix.woff),
|
||||
url(//assets.worlio.com/fonts/Joystix/joystix.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: VCR_OSD_MONO;
|
||||
src: url(//assets.worlio.com/fonts/vcr_osd_mono/vcr_osd_mono.woff),
|
||||
url(//assets.worlio.com/fonts/vcr_osd_mono/vcr_osd_mono.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: BitPap;
|
||||
src: url(//assets.worlio.com/fonts/BitPap/BitPap.woff),
|
||||
url(//assets.worlio.com/fonts/BitPap/BitPap.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Comicoro;
|
||||
src: url(//assets.worlio.com/fonts/Comicoro/Comicoro.woff),
|
||||
url(//assets.worlio.com/fonts/Comicoro/Comicoro.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: DOSVGA-LessPerfect;
|
||||
src: url(//assets.worlio.com/fonts/dosvga/LessPerfect.woff),
|
||||
url(//assets.worlio.com/fonts/dosvga/LessPerfect.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: DOSVGA-MorePerfect;
|
||||
src: url(//assets.worlio.com/fonts/dosvga/MorePerfect.woff),
|
||||
url(//assets.worlio.com/fonts/dosvga/MorePerfect.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Pixio;
|
||||
src: url(//assets.worlio.com/fonts/Pixio/Pixio.woff2),
|
||||
url(//assets.worlio.com/fonts/Pixio/Pixio.woff),
|
||||
url(//assets.worlio.com/fonts/Pixio/Pixio.ttf) format("truetype");
|
||||
}
|
||||
342
core/css/radio.css
Normal file
342
core/css/radio.css
Normal file
@@ -0,0 +1,342 @@
|
||||
@import url('//assets.worlio.com/style/css/theme.css');
|
||||
|
||||
@font-face {
|
||||
font-family:Pixio;
|
||||
src:url(//assets.worlio.com/fonts/Pixio/Pixio.woff2),
|
||||
url(//assets.worlio.com/fonts/Pixio/Pixio.woff),
|
||||
url(//assets.worlio.com/fonts/Pixio/Pixio.ttf) format("truetype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family:nk57;
|
||||
src:url(../fonts/nk57/nk57-monospace-cd-rg.ttf) format("truetype"),
|
||||
url(../fonts/nk57/nk57-monospace-cd-bd.ttf) format("truetype"),
|
||||
url(../fonts/nk57/nk57-monospace-cd-it.ttf) format("truetype"),
|
||||
url(../fonts/nk57/nk57-monospace-cd-lt.ttf) format("truetype");
|
||||
}
|
||||
|
||||
:root {
|
||||
--primary: #0079b5;
|
||||
--primary-border: #009ae6;
|
||||
|
||||
--secondary: #f3dca9;
|
||||
--secondary-border: #f2e5c8;
|
||||
|
||||
--button: #DFDFDF;
|
||||
--button-active: gray;
|
||||
|
||||
--monitor: #0F0F0F;
|
||||
--monitor-text: #F0F0F0;
|
||||
--monitor-border: gray;
|
||||
|
||||
--link-color: unset;
|
||||
}
|
||||
|
||||
*:link, *:visited {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background-image) var(--main-background);
|
||||
background-repeat: repeat;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body, button, fakebutton, input { font-family: Pixio; }
|
||||
|
||||
.container, .player-container {
|
||||
background: var(--primary);
|
||||
border: 2px outset var(--primary-border);
|
||||
padding: 4px;
|
||||
}
|
||||
.container {
|
||||
min-width: 320px;
|
||||
min-height: 280px;
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
margin: auto;
|
||||
max-width: 976px;
|
||||
}
|
||||
.player-container {
|
||||
position: relative;
|
||||
border-bottom: none;
|
||||
width: 320px;
|
||||
height: 78px;
|
||||
margin-bottom: -2px;
|
||||
z-index: 1;
|
||||
}
|
||||
.footer {
|
||||
min-width: 320px;
|
||||
max-width: 976px;
|
||||
text-align: right;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
player, visualizer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: var(--secondary);
|
||||
border: 2px outset var(--secondary-border);
|
||||
flex-shrink: 0;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.banner {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
player {
|
||||
width: 308px; height: 68px;
|
||||
}
|
||||
|
||||
visualizer {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.vis-container {
|
||||
width: 320px;
|
||||
max-width: 320px;
|
||||
}
|
||||
|
||||
button, fakebutton, slider {
|
||||
border: 2px outset var(--button);
|
||||
background: var(--button);
|
||||
}
|
||||
|
||||
slider input {
|
||||
background: lightgray;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
height: 50%;
|
||||
margin: auto 4px;
|
||||
width: 96px;
|
||||
}
|
||||
|
||||
slider input::-webkit-slider-thumb,
|
||||
slider input::-moz-range-thumb {
|
||||
background: gray;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 8px;
|
||||
height: 100%;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
select {
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
button:active,
|
||||
button.active,
|
||||
fakebutton:active,
|
||||
fakebutton.active {
|
||||
border: 2px inset var(--button-active);
|
||||
background: var(--button-active);
|
||||
}
|
||||
|
||||
fakebutton { display: flex; }
|
||||
fakebutton img { margin: 2px; }
|
||||
|
||||
controls {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
controls input { flex-grow: 1; }
|
||||
|
||||
tablist {
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
metadata, canvas {
|
||||
color: var(--monitor-text);
|
||||
background: black;
|
||||
border: 2px inset var(--secondary-border);
|
||||
}
|
||||
|
||||
metadata {
|
||||
padding: 4px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
metadata station { font-weight: bold; }
|
||||
|
||||
panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
stations {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: auto;
|
||||
border: 2px inset var(--primary-border);
|
||||
margin: 2px;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
favorites, history, stats {
|
||||
background: var(--monitor);
|
||||
color: var(--monitor-text);
|
||||
border: 2px inset var(--monitor-border);
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 4px;
|
||||
overflow-y: scroll;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
tabbox {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
}
|
||||
tabbox.active { display: flex; }
|
||||
|
||||
station {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
padding: 4px;
|
||||
margin: 2px;
|
||||
border: 2px inset var(--button-active);
|
||||
background: var(--button-active);
|
||||
}
|
||||
|
||||
station.active {
|
||||
background: var(--button);
|
||||
border: 2px outset var(--button);
|
||||
color: black;
|
||||
}
|
||||
|
||||
station station-name { font-weight: bold; }
|
||||
station track-meta {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
history track-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
history track-container track-station { font-weight: bold; }
|
||||
|
||||
history track-container:nth-of-type(1) {
|
||||
background-color: var(--monitor-text);
|
||||
color: var(--monitor);
|
||||
}
|
||||
|
||||
canvas.vis, canvas.metadata { border-bottom: none; }
|
||||
|
||||
.button-row { display: flex; }
|
||||
|
||||
.fav-button img {
|
||||
filter: contrast(0%);
|
||||
}
|
||||
|
||||
.fav-button.fav img {
|
||||
filter: none;
|
||||
}
|
||||
|
||||
favorites .station-header,
|
||||
history .station-header {
|
||||
text-align: center;
|
||||
margin: 4px 0;
|
||||
text-decoration: underline;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
favorites .track,
|
||||
history .track {
|
||||
display: flex;
|
||||
border-bottom: 1px dashed var(--monitor-text);
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
favorites .track button,
|
||||
history .track button {
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 0;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
favorites .track a,
|
||||
history .track a {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
@media only screen and (orientation: portrait) {
|
||||
.container, .footer {
|
||||
flex-direction: column;
|
||||
width: 320px;
|
||||
}
|
||||
|
||||
.banner { flex-direction: column-reverse; }
|
||||
.banner img, .player-container {
|
||||
margin: auto;
|
||||
}
|
||||
.banner > img { flex-shrink: 0; }
|
||||
.player-container { margin-bottom: -2px; }
|
||||
|
||||
panel {
|
||||
max-height: 480px;
|
||||
}
|
||||
|
||||
favorites, history {
|
||||
height: 240px;
|
||||
}
|
||||
|
||||
body.old panel#favorites, body.old panel#history { display: none; }
|
||||
}
|
||||
|
||||
@media only screen and (orientation: landscape) {
|
||||
.container, .footer {
|
||||
width: calc(100% - 64px);
|
||||
}
|
||||
body:not(.old) .container { height: calc(100% - 212px); }
|
||||
|
||||
.banner {
|
||||
margin: auto;
|
||||
min-width: 320px;
|
||||
width: calc(100% - 52px);
|
||||
max-width: 988px;
|
||||
}
|
||||
.banner > img { margin-top: 2px; }
|
||||
|
||||
.player-container {
|
||||
margin-top: 48px;
|
||||
}
|
||||
|
||||
/* OLD */
|
||||
body.old .container, body.old .footer {
|
||||
flex-direction: column;
|
||||
width: 320px;
|
||||
}
|
||||
|
||||
body.old .banner { flex-direction: column-reverse; }
|
||||
body.old .banner img, body.old .player-container {
|
||||
margin: auto;
|
||||
}
|
||||
body.old .banner > img { flex-shrink: 0; }
|
||||
body.old .player-container { margin-bottom: -2px; }
|
||||
|
||||
body.old panel {
|
||||
max-height: 480px;
|
||||
}
|
||||
|
||||
body.old panel#favorites, body.old panel#history { display: none; }
|
||||
}
|
||||
116
core/css/settings.css
Normal file
116
core/css/settings.css
Normal file
@@ -0,0 +1,116 @@
|
||||
iframe {
|
||||
width: 100%;
|
||||
border: none;
|
||||
min-height: 128px;
|
||||
}
|
||||
|
||||
.box[name="profile"] img.avatar {
|
||||
float: left;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.tabbed-container .box {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.tablist .tab {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.box .option .title.small {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.option {
|
||||
margin: 8px 0px;
|
||||
}
|
||||
|
||||
.option.disabled > *:not(.title) {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
.option .title {
|
||||
font-family: var(--spfont1);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.option .inputtext:not(.shown) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.box hr {
|
||||
border: var(--menu-border);
|
||||
}
|
||||
|
||||
.box .buttonbar {
|
||||
border-top: var(--menu-border);
|
||||
padding: 4px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.box .buttonbar .grower {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.box[name="sessions"] .session {
|
||||
background: var(--mail-content-bg, #dbdbdb);
|
||||
border: var(--mail-content-border, 1px outset #a8a8a8);
|
||||
padding: 4px;
|
||||
margin: 8px 0px;
|
||||
}
|
||||
|
||||
.box[name="sessions"] .session .title {
|
||||
background: var(--mail-subject-bg, #b7b7b7);
|
||||
border: var(--mail-subject-border, 1px outset #8a8a8a);
|
||||
display: flex;
|
||||
padding: 4px;
|
||||
margin: -8px;
|
||||
margin-bottom: 4px;
|
||||
font-family: var(--spfont1);
|
||||
}
|
||||
|
||||
.box[name="sessions"] .session .title img {
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.box[name="sessions"] .session .title b {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.box[name="sessions"] .session .title .button {
|
||||
margin: 0px !important;
|
||||
}
|
||||
|
||||
.box .pager { display: flex; }
|
||||
|
||||
.box .userlist .user-box {
|
||||
display: flex;
|
||||
margin: 4px 0px;
|
||||
}
|
||||
.box .userlist .user-box:hover { background: #0001; }
|
||||
|
||||
.box .userlist .user-box hr {
|
||||
margin: 4px;
|
||||
}
|
||||
|
||||
.guestbooklist .gbmsgbox {
|
||||
border: var(--menu-border);
|
||||
background: var(--menu-bg);
|
||||
margin: 4px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.guestbooklist .gbmsgbox .name {
|
||||
display: flex;
|
||||
}
|
||||
@media only screen and (orientation: landscape) {
|
||||
.tabbed-container.primary > .box .tabbed-container.secondary {
|
||||
margin: -44px -4px -8px -4px;
|
||||
}
|
||||
|
||||
.tabbed-container.primary > .box .tabbed-container.secondary .box {
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
135
core/css/theme.css
Executable file
135
core/css/theme.css
Executable file
@@ -0,0 +1,135 @@
|
||||
/*
|
||||
* | | |
|
||||
* | | | {}
|
||||
* | | ___ .__ | ___
|
||||
* | /\ | / \ | \ | || / \
|
||||
* | / \ | || || | | || || ||
|
||||
* |/ \| \___/ | | || \___/
|
||||
* DEFAULT THEME v1.2.1
|
||||
* 04/28/2022
|
||||
*
|
||||
* Created Internally at Worlio by:
|
||||
* - Nicholas "Wirlaburla" G.
|
||||
*/
|
||||
|
||||
:root {
|
||||
--main-background: #d3d3d3;
|
||||
--main-text: #000000;
|
||||
|
||||
--subtitle: #525252;
|
||||
--main-nav: dodgerblue;
|
||||
--acc-nav: #f3dca9;
|
||||
--acc-nav-separator: 2px solid #000000;
|
||||
|
||||
--context-menu: #d0d0d0;
|
||||
--context-menu-border: 1px outset #a4a4a4;
|
||||
--context-menu-hover: #bfbfbf;
|
||||
|
||||
--menu-border: 1px outset #bdbdbd;
|
||||
--menu-bg: #d0d0d0;
|
||||
|
||||
--header-bg: #ffffff;
|
||||
--header-text: #000000;
|
||||
--header-line: 2px solid #000000;
|
||||
|
||||
--code-bg: #ffffff63;
|
||||
--code-text: #000000;
|
||||
|
||||
--comments-bgcolor: #ffffff;
|
||||
|
||||
--border-line: #000000;
|
||||
--border-header: #ffffff;
|
||||
|
||||
--inactive: #6e6e6e;
|
||||
--alert: #ce0000;
|
||||
--currency: #89541A;
|
||||
|
||||
--staff: #d500d1;
|
||||
|
||||
--tab-inactive: #bdbdbd;
|
||||
--tab-selected: #d3d3d3;
|
||||
--tab-gradient: #dedede;
|
||||
|
||||
--popup-title-bg: #b3b3b3;
|
||||
--popup-title-border: 1px outset #868686;
|
||||
|
||||
--dialog-bg: #fbebcc;
|
||||
--dialog-button-hover: #f9f7dd;
|
||||
--dialog-button-active: #fffeee;
|
||||
|
||||
--listing-unknown: #dd8fe8;
|
||||
--listing-missing: #d57f6b;
|
||||
--listing-found: #8cb9fd;
|
||||
--listing-archived: #5dc668;
|
||||
|
||||
--status-success: #458e1c;
|
||||
--status-error: #ff0000;
|
||||
|
||||
--error: #c85151;
|
||||
--warn: #d5c58e;
|
||||
--info: #8d9dce;
|
||||
--success: #95ce8d;
|
||||
|
||||
--mail-subject-bg: #b7b7b7;
|
||||
--mail-subject-border: 1px outset #8a8a8a;
|
||||
--mail-sub-bg: #cecece;
|
||||
--mail-sub-border: 1px outset #a8a8a8;
|
||||
--mail-content-bg: #dbdbdb;
|
||||
--mail-content-border: 1px outset #959595;
|
||||
--mail-buttonbar: #cacaca;
|
||||
|
||||
--forum-header: #f3dca9;
|
||||
--forum-header-border: 1px outset #a89b7f;
|
||||
--forum-content: #d9d4c9;
|
||||
--forum-content-border: 1px outset #a29c8d;
|
||||
|
||||
--forum-sub: #d7ccb6;
|
||||
--forum-sub-border: 1px outset #99907b;
|
||||
|
||||
--post: #d9d9d9;
|
||||
--post-border: 1px outset #bfb9a9;
|
||||
--post-bottombar: #d2d2d2;
|
||||
|
||||
--post-author: #b4b6b7;
|
||||
--post-author-border: 1px outset #84775a;
|
||||
|
||||
--quote-bg: #cacaca;
|
||||
--quote-border: 1px outset #9b9481;
|
||||
|
||||
--spoiler-bg: #b0b0b0;
|
||||
--spoiler-header-bg: #1c1c1c;
|
||||
--spoiler-header-text: #E8E8E8;
|
||||
--spoiler-border: 1px inset #1c1c1c;
|
||||
|
||||
--bar-bgcolor: #ffffff;
|
||||
|
||||
--input-bg: #ffffff;
|
||||
--input-text: #000000;
|
||||
|
||||
--direct: #ffffff;
|
||||
|
||||
--background-image: url('//assets.worlio.com/style/background');
|
||||
--button-large: url('//assets.worlio.com/style/button-large');
|
||||
--button-wide: url('//assets.worlio.com/style/button-wide');
|
||||
--button-long: url('//assets.worlio.com/style/button-long');
|
||||
--button-med: url('//assets.worlio.com/style/button-med');
|
||||
--button-small: url('//assets.worlio.com/style/button-small');
|
||||
|
||||
--navbar-left: url('//assets.worlio.com/style/navbar-left');
|
||||
--navbar-right: url('//assets.worlio.com/style/navbar-right');
|
||||
--navbar-top: url('//assets.worlio.com/style/navbar-top');
|
||||
--navbar-bottom: url('//assets.worlio.com/style/navbar-bottom');
|
||||
--nav-db: url('//assets.worlio.com/style/navbar-db');
|
||||
|
||||
--navbar-bg: url('//assets.worlio.com/style/navbar-bg');
|
||||
--navbar-gradient: url('//assets.worlio.com/style/navbar-gradient');
|
||||
|
||||
--rankflag0: #777;
|
||||
--rankflag1: #4c3525;
|
||||
--rankflag2: #3d464b;
|
||||
--rankflag3: #5c4d0f;
|
||||
--rankflag4: #5988a5;
|
||||
--rankflag5: #319b3a;
|
||||
--rankflag6: #d35ed0;
|
||||
--rankflag7: #171717;
|
||||
}
|
||||
Reference in New Issue
Block a user