some changes to themes
This commit is contained in:
parent
26c526e433
commit
8237b6aa19
51 changed files with 852 additions and 12 deletions
91
themes/fzmin2/static/css/style.css
Normal file
91
themes/fzmin2/static/css/style.css
Normal file
|
@ -0,0 +1,91 @@
|
|||
|
||||
body {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
padding: 1em;
|
||||
line-height: 1.5;
|
||||
background: var(--bg0);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.isso-thread-heading {
|
||||
color: var(--text-color) !important;
|
||||
}
|
||||
|
||||
.isso-comment.isso-no-votes {
|
||||
color: var(--text-color) !important;
|
||||
}
|
||||
|
||||
.isso-author {
|
||||
color: var(--text-color) !important;
|
||||
}
|
||||
|
||||
.isso-permalink {
|
||||
color: var(--text-color) !important;
|
||||
}
|
||||
|
||||
.isso-downvote {
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* header and footer areas */
|
||||
.menu { padding: 0; }
|
||||
.menu li { display: inline-block;}
|
||||
.article-meta, .menu a {
|
||||
text-decoration: none;
|
||||
background: var(--bg1);
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.menu h1 {
|
||||
border-left: 4px solid var(--accent);
|
||||
}
|
||||
.menu a:hover {
|
||||
border-bottom: solid var(--accent);
|
||||
}
|
||||
.article-meta, footer { text-align: center;}
|
||||
.title { font-size: 1.1em; }
|
||||
footer a { text-decoration: none; }
|
||||
hr {
|
||||
border-style: dashed;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
/* code */
|
||||
pre {
|
||||
border: 1px solid #ddd;
|
||||
/*box-shadow: 5px 5px 5px #eee;*/
|
||||
padding: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
code { background: none; }
|
||||
pre code { background: none; }
|
||||
|
||||
/* misc elements */
|
||||
img, iframe, video { max-width: 100%; margin-bottom: none; }
|
||||
main { hyphens: auto; }
|
||||
blockquote {
|
||||
background: #f9f9f9;
|
||||
border-left: 5px solid #ccc;
|
||||
padding: 3px 1em 3px;
|
||||
}
|
||||
|
||||
table {
|
||||
margin: auto;
|
||||
}
|
||||
table thead th { border-bottom: 1px solid var(--bg3); }
|
||||
th, td { padding: 5px; }
|
||||
thead, tfoot, tr:nth-child(even) { background: var(--bg3); }
|
||||
ul {margin-top: none;}
|
||||
|
||||
.post h3 {
|
||||
margin-bottom: 0.2rem;
|
||||
}
|
||||
|
||||
.post .date {
|
||||
font-size: 12px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue