Browse Source

dark.css stylesheet fixes

Conflicts:
	stylesheets/dark.css
pull/40/head
czaks 11 years ago
committed by Michael Foster
parent
commit
780dd56eab
  1. 50
      stylesheets/dark.css

50
stylesheets/dark.css

@ -8,13 +8,16 @@ body {
font-family: sans-serif; font-family: sans-serif;
font-size: 12px; font-size: 12px;
} }
span.quote {
color:#B8D962;
}
h1 { h1 {
font-size: 20pt; font-size: 20pt;
text-align: center; text-align: center;
letter-spacing: 0px; letter-spacing: 0px;
} }
div.title, h1 { div.title, h1 {
color: lime; color: #32DD72;
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
} }
div.title p { div.title p {
@ -22,35 +25,41 @@ div.title p {
} }
a:link, a:visited, p.intro a.email span.name { a:link, a:visited, p.intro a.email span.name {
color: #CCCCCC; color: #CCCCCC;
text-decoration: underline; text-decoration: none;
font-family: sans-serif; font-family: sans-serif;
} }
a:link:hover, a:visited:hover { a:link:hover, a:visited:hover {
color: #FF0000; color: #fff;
font-family: sans-serif; font-family: sans-serif;
text-decoration: underline overline; text-decoration: none;
} }
a.post_no { a.post_no {
color: #AAAAAA; color: #AAAAAA;
text-decoration: none; text-decoration: none;
} }
a.post_no:hover { a.post_no:hover {
color: maroon; color: #32DD72 !important;
text-decoration: underline overline; text-decoration: underline overline;
} }
div.post.reply { div.post.reply {
background: #333333; background: #333333;
border: #555555 1px solid; border: #555555 1px solid;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
} }
div.post.reply.highlighted { div.post.reply.highlighted {
background: transparent; background: #555;
border: transparent 1px solid; border: transparent 1px solid;
} }
div.post.reply div.body a:link, div.post.reply div.body a:visited { div.post.reply div.body a:link, div.post.reply div.body a:visited {
color: #CCCCCC; color: #CCCCCC;
} }
div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover { div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover {
color: #FF0000; color: #32DD72;
} }
p.intro span.subject { p.intro span.subject {
font-size: 12px; font-size: 12px;
@ -59,7 +68,7 @@ p.intro span.subject {
font-weight: 800; font-weight: 800;
} }
p.intro span.name { p.intro span.name {
color: #00CC00; color: #32DD72;
font-weight: 800; font-weight: 800;
} }
p.intro a.capcode, p.intro a.nametag { p.intro a.capcode, p.intro a.nametag {
@ -67,7 +76,7 @@ p.intro a.capcode, p.intro a.nametag {
margin-left: 0; margin-left: 0;
} }
p.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name { p.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name {
color: #00CCCC; color: #32ddaf;
} }
input[type="text"], textarea, select { input[type="text"], textarea, select {
background: #333333; background: #333333;
@ -91,8 +100,8 @@ form table tr th {
padding: 0; padding: 0;
} }
div.banner { div.banner {
background: #00AA00; background: #32DD72;
color: #FFFFFF; color: #000;
text-align: center; text-align: center;
width: 250px; width: 250px;
padding: 4px; padding: 4px;
@ -102,6 +111,9 @@ div.banner {
margin-right: auto; margin-right: auto;
font-size: 12px; font-size: 12px;
} }
div.banner a {
color:#000;
}
input[type="submit"] { input[type="submit"] {
background: #333333; background: #333333;
border: #888888 1px solid; border: #888888 1px solid;
@ -110,7 +122,10 @@ input[type="submit"] {
input[type="submit"]:hover { input[type="submit"]:hover {
background: #555555; background: #555555;
border: #888888 1px solid; border: #888888 1px solid;
color: #FF0000; color: #32DD72;
}
input[type="text"]:focus {
border:#aaa 1px solid;
} }
p.fileinfo a:hover { p.fileinfo a:hover {
text-decoration: underline; text-decoration: underline;
@ -134,7 +149,9 @@ hr {
} }
div.boardlist { div.boardlist {
color: #999999; color: #999999;
background-color: rgba(12%, 12%, 12%, 0.10);
} }
div.ban { div.ban {
background-color: transparent; background-color: transparent;
border: transparent 0px solid; border: transparent 0px solid;
@ -148,3 +165,12 @@ table.modlog tr th {
background: #333333; background: #333333;
color: #AAAAAA; color: #AAAAAA;
} }
.desktop-style div.boardlist:nth-child(1) {
text-shadow: black 1px 1px 1px, black -1px -1px 1px, black -1px 1px 1px, black 1px -1px 1px;
}
.desktop-style div.boardlist:nth-child(1):hover {
background-color: rgba(30%, 30%, 30%, 0.65);
}
Loading…
Cancel
Save