Add reset.css. Create new thread btn

This commit is contained in:
Dominic Ferrando
2025-04-16 23:24:09 -04:00
parent a7b2c052de
commit 598eeb0a60
6 changed files with 188 additions and 34 deletions
+24 -4
View File
@@ -16,6 +16,7 @@ body {
#boardList {
font-size: 12px;
margin: 5px;
}
#boardList a {
@@ -35,19 +36,38 @@ body {
}
.board-header h1 {
padding: 0;
margin: 0;
font-weight: bold;
font-size: 1.8rem;
margin: 8px;
margin-top: 12px;
}
.board-header p {
font-size: 12px;
margin: 5px;
font-size: .8rem;
margin: 4px;
}
.board-header img {
width: 300px;
}
.new-thread-btn {
display: block;
margin: auto;
margin-top: 12px;
background: none;
border: none;
padding: 0;
font-weight: bold;
font-size: 1.2rem;
color: #34345C;
cursor: pointer;
}
.new-thread-btn:hover {
color: #ff0000
}
/* GENERAL LAYOUT */
.container {
+135
View File
@@ -0,0 +1,135 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}