Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/static/site.css

253 lines
3.5 KiB
CSS
Raw Normal View History

2015-08-04 19:03:44 +05:00
.thread {
margin-bottom: 1em;
display: inline-block;
word-wrap: break-word;
width: 100%;
2015-08-04 19:03:44 +05:00
}
.frontend , .subject {
2015-09-18 01:50:32 +05:00
color: #928BFF;
2015-08-04 19:03:44 +05:00
}
.name {
color: #117743;
}
.name , .subject {
font-weight: bold;
}
2015-08-06 23:35:44 +05:00
#postform-outer {
text-align: center;
}
input {
width: 70%;
}
input.button {
width: 25%;
}
textarea {
width: 350px;
}
#postform-inner {
display: inline-block;
}
2015-08-04 19:03:44 +05:00
.post {
padding: 10px 10px;
}
2015-09-24 03:54:26 +05:00
pre > p {
display: block-inline;
}
2015-08-06 19:50:39 +05:00
.reply, th, .ukko_thread_header {
2015-09-18 01:46:21 +05:00
background: #202331;
}
2015-09-19 22:03:41 +05:00
tr {
background: #202123;
}
2015-08-06 19:50:39 +05:00
hr {
height: 0px;
border-width: 1px medium medium;
border-color: #b7c5d9;
border-style: solid none none;
}
2015-08-06 20:13:41 +05:00
a:hover , a:visited:hover {
color: #f13333;
}
a {
2015-09-19 22:03:41 +05:00
color: #4A4AFF;
2015-08-06 20:13:41 +05:00
}
a:visited {
2015-09-19 22:03:41 +05:00
color: #5E00A0;
2015-08-06 20:13:41 +05:00
}
.navbar {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
margin-top: 0px;
z-index: 20;
box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.15);
2015-09-18 01:46:21 +05:00
background: #202331;
2015-08-06 20:13:41 +05:00
color: #616383;
}
.navbar-sep {
color: black;
}
#postform_container {
margin-top: 5em;
}
.ukko_thread_header {
padding: 5px 5px;
margin: 5px 5px;
display: inline-block;
}
th {
font-size: 10pt;
padding-left: 10px;
padding-right: 15px;
2015-08-04 19:03:44 +05:00
}
2015-09-19 22:45:49 +05:00
#captcha_img {
background: #d3d3d3;
}
2015-09-19 22:50:19 +05:00
input, textarea {
color: whitesmoke;
background: #2d2d2d;
border-color: #4D28CA;
border-radius: 3px;
}
2015-09-19 22:33:00 +05:00
html {
2015-09-18 01:46:21 +05:00
color: #ededed;
2015-10-02 21:04:49 +05:00
background: #262230;
2015-09-19 22:33:26 +05:00
height: 100%;
font-family: arial,helvetica,sans-serif;
font-size: 10pt;
margin: 0 4px;
padding-left: 4px;
padding-right: 4px;
2015-08-04 19:03:44 +05:00
}
.reply {
margin-left: 1.8em;
display: inline-block;
border-radius: 3px;
2015-08-04 19:03:44 +05:00
}
.frontend {
margin-top: 0px;
display: inline-block;
}
.op {
margin-right: 20px;
margin-bottom: 10px;
}
2015-09-09 07:20:20 +05:00
.post {
display: inline;
2015-08-04 19:03:44 +05:00
margin-bottom: 5px;
2015-08-04 19:03:44 +05:00
}
.tripcode {
color: #de04ef;
}
2015-09-01 01:58:30 +05:00
@keyframes psych
{
0% {background-color: red; color: blue; }
10% {background-color: yellow; color: red; }
20% {background-color: blue; color: green; }
30% {background-color: green; color: yellow; }
40% {background-color: red; color: blue; }
50% {background-color: yellow; color: green; }
60% {background-color: blue; color: yellow; }
70% {background-color: green; color: blue; }
80% {background-color: red; color: green; }
90% {background-color: yellow; color: red; }
95% {background-color: blue; color: yellow; }
100% {background-color: green; color: white; }
}
.psy > p {
animation: psych 2s linear infinite;
display: inline-block;
}
2015-08-04 19:03:44 +05:00
.memearrows {
color: green;
}
2015-09-01 01:14:32 +05:00
.redtext {
color: #d50505;
font-weight: bold;
}
2015-09-01 01:41:25 +05:00
.spoiler {
display: inline-block;
}
.spoiler > p {
background: black;
color: black;
}
.spoiler:hover > p {
background: black;
color: white;
}
.intro {
margin-bottom: 0.75em;
}
.file:not(.multiple) .file-thumbnail {
float: left;
}
.file-thumbnail {
display: block;
margin: 5px 20px 10px;
border: medium none;
max-width: 300px;
max-height: 200px;
2015-08-20 06:50:52 +05:00
}
2015-09-09 07:26:07 +05:00
.reply, .ukko_thread_header , pre {
2015-08-20 07:40:44 +05:00
padding: 7px 7px;
border-radius: 5px;
2015-08-20 07:45:56 +05:00
box-shadow: 1px 1px 3px black;
2015-08-20 07:45:07 +05:00
}
.post_body > pre {
2015-08-20 07:35:35 +05:00
background: #3f3f3f;
color: #d17600;
2015-08-25 18:21:18 +05:00
}
2015-09-09 07:30:41 +05:00
.post_body > p {
margin: 0px 0px;
}
2015-09-09 07:04:39 +05:00
.post_body {
2015-09-09 07:27:29 +05:00
display: inline;
2015-09-09 07:26:07 +05:00
width: inherit;
2015-09-09 07:20:20 +05:00
}
.post {
2015-09-09 07:04:39 +05:00
display: inline-block;
2015-09-09 07:20:20 +05:00
width: 80%;
2015-09-09 07:04:39 +05:00
}
2015-08-25 18:21:18 +05:00
#faq > div {
margin-left: 20%;
width: 50%;
padding: 10px;
2015-09-20 01:21:22 +05:00
}
2015-09-22 16:28:26 +05:00
#captcha_img {
background: grey;
2015-08-04 19:03:44 +05:00
}