lainchan/stylesheets/style.css

460 lines
6.9 KiB
CSS
Raw Normal View History

2010-11-02 06:57:33 -04:00
body {
background: #EEF2FF url('img/fade-blue.png') repeat-x 50% 0%;
2010-11-02 06:57:33 -04:00
color: black;
font-family: arial, helvetica, sans-serif;
font-size: 10pt;
margin: 0 8px;
padding-left: 5px;
padding-right: 5px;
}
table * {
margin: 0;
}
2012-05-03 10:21:16 -04:00
a, a:visited {
2010-11-02 06:57:33 -04:00
text-decoration: underline;
color: #34345C;
}
2012-05-10 10:17:49 -04:00
a:hover, p.intro a.post_no:hover {
2010-11-02 06:57:33 -04:00
color: #ff0000;
}
a.post_no {
text-decoration: none;
margin: 0;
padding: 0;
}
2012-05-10 10:17:49 -04:00
p.intro a.post_no {
color: inherit;
2012-05-03 10:21:16 -04:00
}
2010-11-02 06:57:33 -04:00
p.intro a.post_no, p.intro a.email {
margin: 0;
}
p.intro a.email span.name {
color: #34345C;
}
p.intro a.email:hover span.name {
color: #ff0000;
}
2011-02-17 09:13:56 -05:00
p.intro label {
display: inline;
}
2010-11-02 06:57:33 -04:00
h2 {
color: #AF0A0F;
font-size: 11pt;
2012-03-31 06:01:55 -04:00
margin: 0;
padding: 0;
}
header {
margin: 1em 0;
2011-05-25 06:21:00 -04:00
}
2012-04-22 02:52:24 -04:00
h1 {
2011-05-25 06:21:00 -04:00
font-family: tahoma;
letter-spacing: -2px;
2010-11-02 06:57:33 -04:00
font-size: 20pt;
2012-03-31 06:01:55 -04:00
margin: 0;
2011-05-25 06:21:00 -04:00
}
2012-03-31 06:01:55 -04:00
header div.subtitle, h1 {
color: #AF0A0F;
2011-05-25 06:21:00 -04:00
text-align: center;
}
2012-03-31 06:01:55 -04:00
header div.subtitle {
2010-11-02 06:57:33 -04:00
font-size: 8pt;
}
form {
margin-bottom: 4em;
2011-05-25 06:21:00 -04:00
}
form table {
margin: auto;
}
form table input {
height: auto;
2010-11-02 06:57:33 -04:00
}
input[type="text"], input[type="password"], textarea {
border: 1px solid #a9a9a9;
2012-04-16 02:40:24 -04:00
text-indent: 0;
2010-11-02 06:57:33 -04:00
text-shadow: none;
text-transform: none;
word-spacing: normal;
}
2011-05-25 06:21:00 -04:00
form table tr td {
text-align: left;
2012-04-16 02:40:24 -04:00
margin: 0;
padding: 0;
}
form table.mod tr td {
padding: 2px;
2011-05-25 06:21:00 -04:00
}
form table tr th {
text-align: left;
padding: 4px;
}
form table tr th {
background: #98E;
2010-11-02 06:57:33 -04:00
}
2011-01-02 06:32:38 -05:00
form table tr td div {
2011-04-11 02:52:59 -04:00
text-align: center;
2011-01-02 06:32:38 -05:00
float: left;
padding-left: 3px;
}
form table tr td div input {
display: block;
margin: 2px auto 0 auto;
}
form table tr td div label {
font-size: 10px;
}
2010-11-02 06:57:33 -04:00
.unimportant, .unimportant * {
font-size: 10px;
}
p.fileinfo {
display: block;
2012-04-16 02:40:24 -04:00
margin: 0;
padding-right: 7em;
2010-11-02 06:57:33 -04:00
}
div.banner {
2011-10-05 01:34:03 -04:00
background-color: #E04000;
2010-11-02 06:57:33 -04:00
font-size: 12pt;
font-weight: bold;
text-align: center;
margin: 1em 0;
}
div.banner, div.banner a {
color: white;
}
div.banner a:hover {
color: #EEF2FF;
text-decoration: none;
}
2011-01-20 21:14:55 -05:00
img.banner {
float: none;
2011-10-05 01:34:03 -04:00
border: 1px solid #a9a9a9;
2011-09-29 08:29:55 -04:00
margin: 12px auto 0 auto;
2011-01-20 21:14:55 -05:00
}
2010-11-02 06:57:33 -04:00
img {
display: block;
float: left;
margin: 10px 20px;
border: none;
}
div.post img {
padding: 5px;
margin: 5px 20px 0 0;
}
2010-12-16 07:08:52 -05:00
div.post img.icon {
display: inline;
float: none;
margin: 0 5px;
padding: 0;
}
2010-11-02 06:57:33 -04:00
div.post.op {
margin-right: 20px;
margin-bottom: 5px;
}
2011-02-20 02:28:39 -05:00
div.post.op hr {
border-color: #D9BFB7;
}
2010-11-02 06:57:33 -04:00
p.intro {
margin: 0.5em 0;
padding: 0;
padding-bottom: 0.2em;
}
2011-01-20 21:14:55 -05:00
input.delete {
float: left;
margin: 1px 6px 0 0;
}
2010-11-02 06:57:33 -04:00
p.intro span.subject {
color: #0F0C5D;
font-weight: bold;
}
p.intro span.name {
color: #117743;
font-weight: bold;
}
2012-05-03 10:21:16 -04:00
p.intro span.capcode, p.intro a.capcode, p.intro a.nametag {
2011-01-18 20:37:31 -05:00
color: #F00000;
margin-left: 0;
}
2010-11-02 06:57:33 -04:00
p.intro a {
margin-left: 8px;
}
2011-01-20 21:14:55 -05:00
div.delete {
float: right;
}
2010-11-02 06:57:33 -04:00
div.post.reply p {
margin: 0.3em 0 0 0;
}
div.post.reply div.body {
2010-11-02 06:57:33 -04:00
margin-left: 1.8em;
margin-top: 0.8em;
padding-right: 3em;
padding-bottom: 0.3em;
}
div.post.reply.highlighted {
background: #D6BAD0;
}
div.post.reply div.body a {
2010-11-02 06:57:33 -04:00
color: #D00;
}
2011-02-21 19:47:09 -05:00
div.post {
max-width: 97%;
}
div.post div.body {
2011-02-21 19:47:09 -05:00
word-wrap: break-word;
white-space: pre-wrap;
2011-02-21 19:47:09 -05:00
}
2010-11-02 06:57:33 -04:00
div.post.reply {
background: #D6DAF0;
2011-02-16 07:38:44 -05:00
margin: 0.2em 16px;
2010-11-02 06:57:33 -04:00
padding: 0.2em 0.3em 0.5em 0.6em;
border-width: 1px;
border-style: none solid solid none;
border-color: #B7C5D9;
2011-07-06 15:22:33 -04:00
display: inline-block;
2010-11-02 06:57:33 -04:00
}
span.trip {
color: #228854;
}
span.quote {
color: #789922;
}
span.omitted {
display: block;
margin-top: 1em;
}
br.clear {
clear: left;
display: block;
2010-12-16 01:04:52 -05:00
}
span.controls {
float: right;
margin: 0;
padding: 0;
font-size: 80%;
}
span.controls.op {
float: none;
margin-left: 10px;
}
span.controls a {
margin: 0;
2011-01-01 09:52:22 -05:00
}
2011-01-18 08:41:43 -05:00
div#wrap {
width: 900px;
margin:0 auto;
}
2011-01-01 09:52:22 -05:00
div.ban {
background: white;
border: 1px solid #98E;
max-width: 700px;
margin: 30px auto;
}
div.ban p, div.ban h2 {
padding: 3px 7px;
}
div.ban h2 {
background: #98E;
color: black;
font-size: 12pt;
}
div.ban p {
font-size: 12px;
margin-bottom: 12px;
}
div.ban p.reason {
font-weight: bold;
2011-01-18 08:41:43 -05:00
}
2011-03-02 01:15:37 -05:00
span.heading {
color: #AF0A0F;
font-size: 11pt;
font-weight: bold;
}
2011-01-18 08:41:43 -05:00
span.spoiler {
background: black;
2011-02-19 20:39:56 -05:00
color: black;
padding: 0px 1px;
2011-01-18 08:41:43 -05:00
}
div.post.reply div.body span.spoiler a {
color: black;
}
span.spoiler:hover, div.post.reply div.body span.spoiler:hover a {
2011-01-18 08:41:43 -05:00
color: white;
2011-01-20 03:35:41 -05:00
}
div.styles {
float: right;
padding-bottom: 20px;
2011-01-20 03:35:41 -05:00
}
div.styles a {
margin: 0 10px;
}
div.styles a.selected {
text-decoration: none;
2011-01-20 21:14:55 -05:00
}
2011-02-15 22:44:34 -05:00
table.test {
width: 100%;
}
table.test td, table.test th {
text-align: left;
padding: 5px;
}
table.test tr.h th {
background: #98E;
}
table.test td img {
margin: 0;
}
fieldset label {
display: block;
2011-02-16 07:32:43 -05:00
}
div.pages {
color: #89A;
background: #D6DAF0;
display: inline;
padding: 8px;
border-right: 1px solid #B7C5D9;
border-bottom: 1px solid #B7C5D9;
}
div.pages a.selected {
color: black;
font-weight: bolder;
}
2012-05-03 10:21:16 -04:00
div.pages a {
2011-02-16 07:32:43 -05:00
text-decoration: none;
2011-02-16 07:38:44 -05:00
}
div.pages form {
margin: 0;
padding: 0;
display: inline;
}
div.pages form input {
margin: 0 5px;
display: inline;
}
2011-02-16 07:38:44 -05:00
hr {
border: none;
border-top: 1px solid #B7C5D9;
2012-04-16 02:40:24 -04:00
height: 0;
2012-03-06 05:29:04 -05:00
clear: left;
2011-02-19 04:25:21 -05:00
}
div.boardlist {
color: #89A;
font-size: 9pt;
2011-02-19 20:39:56 -05:00
margin-top: 3px;
}
div.boardlist.bottom {
margin-top: 20px;
2011-02-19 04:25:21 -05:00
}
div.boardlist a {
text-decoration: none;
2011-02-20 02:28:39 -05:00
}
div.report {
color: #333;
2011-03-02 01:51:29 -05:00
}
table.modlog {
margin: auto;
width: 100%;
}
table.modlog tr td {
text-align: left;
2012-04-16 02:40:24 -04:00
margin: 0;
2011-03-02 01:51:29 -05:00
padding: 4px 15px 0 0;
}
table.modlog tr th {
text-align: left;
padding: 4px 15px 5px 5px;
white-space: nowrap;
}
table.modlog tr th {
background: #98E;
}
2011-04-05 03:36:00 -04:00
td.minimal, th.minimal {
2011-03-02 01:51:29 -05:00
width: 1%;
white-space: nowrap;
2011-03-17 01:52:43 -04:00
}
div.top_notice {
text-align: center;
margin: 5px auto;
2011-04-03 04:21:05 -04:00
}
span.public_ban {
display: block;
color: red;
font-weight: bold;
margin-top: 15px;
2011-05-25 03:55:34 -04:00
}
2011-05-27 09:56:20 -04:00
span.toolong {
display: block;
margin-top: 15px;
}
2011-05-25 03:55:34 -04:00
div.blotter {
color: red;
font-weight: bold;
text-align: center;
2011-07-06 15:22:33 -04:00
}
2012-05-20 06:20:50 -04:00
table.mod.config-editor {
font-size: 9pt;
width: 100%;
2012-05-03 10:21:16 -04:00
}
2012-05-20 06:20:50 -04:00
table.mod.config-editor td {
text-align: left;
padding: 5px;
border-bottom: 1px solid #98e;
2012-05-03 10:21:16 -04:00
}
2012-05-20 06:20:50 -04:00
table.mod.config-editor input[type="text"] {
width: 98%;
2012-05-03 10:21:16 -04:00
}
2012-12-22 14:20:18 -05:00
.desktop-style div.boardlist:nth-child(1) {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
/*text-shadow: white 1px 0px 6px, white 1px 0px 6px, black 1px 0px 3px;*/
margin-top: 0px;
z-index: 30;
2012-12-22 14:20:18 -05:00
}
.desktop-style div.boardlist:nth-child(1):hover {
background-color: rgba(90%, 90%, 90%, 0.6);
}
.desktop-style body {
padding-top: 20px;
}
.desktop-style .sub {
background: inherit;
}
.desktop-style .sub .sub {
display: inline-block;
text-indent: -9000px;
width: 7px;
background: url('img/arrow.png') right center no-repeat;
}
.desktop-style .sub .sub:hover, .desktop-style .sub .sub.hover {
2012-12-22 14:20:18 -05:00
display: inline;
text-indent: 0px;
background: inherit;
}
2012-12-23 21:39:47 -05:00
#attention_bar {
height: 1.5em;
width: 100%;
text-align: center;
}
#attention_bar_form {
display: none;
padding: 0;
margin: 0;
}
#attention_bar_input {
width: 100%;
padding: 0;
margin: 0;
text-align: center;
}
#attention_bar:hover {
background-color: #fff;
opacity: 0.8;
}
2012-12-24 07:04:06 -05:00
.thread-hidden {
opacity: 0.5;
}