mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-15 03:17:38 +01:00
b8f1c219f0
adds an option to use textarea in theme settings. Merged most Basic, Recent and Frameset theme functions in one. you can add a video picture icon and quote in the homepage. @ctrlcctrlv feel free to add suggestions and fix bladly formed code or let me know and I will try to fix. i installed it on my demo site: https://hikichan.com/
74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
body {
|
|
color: #CCCCCC;
|
|
background: #1E1E1E;
|
|
}
|
|
|
|
header div.subtitle, h1 {
|
|
color: #CCCCCC;
|
|
}
|
|
|
|
a:link, a:visited, p.intro a.email span.name {
|
|
color: #CCCCCC;
|
|
text-decoration: underline;
|
|
font-family: sans-serif;
|
|
}
|
|
a:link:hover, a:visited:hover {
|
|
color: #FF0000;
|
|
font-family: sans-serif;
|
|
text-decoration: underline overline;
|
|
}
|
|
|
|
.box-wrap {
|
|
max-width: 670px;
|
|
min-width: 332px;
|
|
margin: 30px auto;
|
|
overflow: auto;
|
|
padding: 0;
|
|
}
|
|
.box {
|
|
background: white;
|
|
border: 1px solid #98E;
|
|
width: 330px;
|
|
margin: 8px 0;
|
|
padding: 0;
|
|
}
|
|
.box ul {
|
|
padding: 2px 15px;
|
|
}
|
|
.box ul li {
|
|
list-style: none;
|
|
margin: 0;
|
|
}
|
|
.box.left {
|
|
background: #333333;
|
|
color: #CCCCCC;
|
|
border: #555555 1px solid;
|
|
float: left;
|
|
}
|
|
.box.right {
|
|
background: #333333;
|
|
color: #CCCCCC;
|
|
border: #555555 1px solid;
|
|
float: right;
|
|
}
|
|
|
|
.box h2 {
|
|
padding: 3px 7px;
|
|
font-size: 12pt;
|
|
border: #555555 1px solid;
|
|
}
|
|
.box.left h2 {
|
|
background: #333333;
|
|
color: #CCCCCC;
|
|
border: #555555 1px solid;
|
|
}
|
|
.box.right h2 {
|
|
background: #333333;
|
|
color: #CCCCCC;
|
|
border: #555555 1px solid;
|
|
}
|
|
.box img {
|
|
float: none;
|
|
margin: 10px auto;
|
|
}
|