summaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authordan <[email protected]>2023-02-27 11:04:35 -0500
committerdan <[email protected]>2023-02-27 11:04:35 -0500
commit37db988e1aa49411e6000df64220aeebf8c4a198 (patch)
tree3b4b3cd836d052c65bca8b1c86938451887d6755 /style.css
download54-37db988e1aa49411e6000df64220aeebf8c4a198.tar.gz
54-37db988e1aa49411e6000df64220aeebf8c4a198.tar.bz2
54-37db988e1aa49411e6000df64220aeebf8c4a198.zip
init
Diffstat (limited to 'style.css')
-rw-r--r--style.css135
1 files changed, 135 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..d674cb7
--- /dev/null
+++ b/style.css
@@ -0,0 +1,135 @@
+html {
+ font-size: 100%;
+}
+
+body {
+ color: black;
+ font-family: Lato, FreeSans, Roboto, Helvetica, Sans-Serif;
+ font-size: 14pt;
+ line-height: 1.6;
+}
+
+table {
+ width: 100%;
+ min-width:100%;
+ max-width:100%;
+}
+
+
+h1, h2, h3, h4 {
+ text-align: left;
+ color: black;
+ font-weight: normal;
+}
+
+h1, h2, h3 {
+ font-weight: bold;
+ margin-bottom:0.5em;
+}
+
+h3, h4, h5, h6 {
+ margin-bottom:0.4em;
+}
+
+/* main 010c5b
+analogous 24015b, 01395b
+*/
+
+h1 {
+ font-size: 28pt;
+ color: #010c5b;
+}
+
+h2 {
+ font-size: 17pt;
+ color: #01395b;
+}
+
+a {
+ color: #010c5b;
+}
+
+h3 {
+ font-size: 16pt;
+}
+
+h4 {
+ font-size: 15pt;
+}
+
+h5 {
+ font-size: 14pt;
+}
+
+h6 {
+ font-size: 10pt;
+ line-height: 1;
+}
+
+ul, ol {
+/* font-size: 10pt;*/
+/* line-height: 1.3; */
+}
+
+figcaption {
+ font-style: italic;
+ font-size: 9pt;
+}
+
+table {
+ font-family: arial, sans-serif;
+ border-collapse: collapse;
+ min-width: 60%;
+}
+
+td, th {
+ border: 1px solid #dddddd;
+ text-align: left;
+ padding: 8px;
+}
+
+tr:nth-child(even) {
+ background-color: #dddddd;
+}
+
+.post {
+ border-style: solid;
+ padding: 1em;
+ margin-top: 2px;
+}
+
+.author {
+ font-size: 12pt;
+}
+
+.new-post-form {
+
+}
+
+.new-post-form #content {
+ width: 100%;
+}
+
+#submit {
+ border: 0;
+ line-height: 2.5;
+ padding: 0 20px;
+ font-size: 1rem;
+ text-align: center;
+ color: #fff;
+ text-shadow: 1px 1px 1px #000;
+ border-radius: 10px;
+ background-color: rgba(0, 0, 220, 1);
+ background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
+ box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6);
+ margin-top:2px;
+ cursor: pointer;
+}
+
+#submit:hover {
+ background-color: rgba(0, 0, 220, 1);
+}
+
+#submit:active {
+ box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6), inset 2px 2px 3px rgba(0, 0, 0, 0.6);
+}