summaryrefslogtreecommitdiff
path: root/styles/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles/style.css')
-rw-r--r--styles/style.css117
1 files changed, 64 insertions, 53 deletions
diff --git a/styles/style.css b/styles/style.css
index 95d3a94..0758f59 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -1,54 +1,35 @@
body {
font-family: Arial, sans-serif;
font-size: 10pt;
- margin: auto;
- width: 980px;
+ margin: 24px 5%;
+ background-color: #ffe;
}
a {
- color: #2365B0;
+ color: forestgreen;
}
-small {
- font-size: 8pt;
- color: #333;
-}
-
-.header > small {
- color: #dde;
-}
-
-.success {
- background-color: #efe;
- margin: 8px 40px 14px 18px;
- padding: 12px;
- border: 1px solid #aea;
- overflow: hidden;
- border-radius: 5px;
-}
-
-.error {
- background-color: #fee;
- margin: 8px 40px 14px 18px;
- padding: 12px;
- border: 1px solid #eaa;
- overflow: hidden;
- border-radius: 5px;
-}
a:hover {
- color:#373737;
+ color: #333;
text-decoration: none;
}
+small {
+ font-size: 8pt;
+ color: #333;
+}
+
table {
width: 100%;
+ border: none;
+ border-collapse: collapse;
}
th, .header {
- background-color: #469;
- color: #eee;
- padding: 2px;
+ background-color: forestgreen;
+ color: white;
+ padding: 4px;
}
th, .header a {
@@ -57,45 +38,75 @@ th, .header a {
}
td {
- background-color: #eee;
+ background-color: white;
+ border: 1px solid forestgreen;
+ margin: none;
padding: 3px;
}
-.info {
- color: #666;
+blockquote {
+ background-color: #ffd;
+ margin: 8px 40px 14px 18px;
+ padding: 12px;
+ border: 1px solid #aa6;
+ overflow: hidden;
+}
+
+textarea {
+ width: 100%;
+ height: 200px;
+ margin-right: 0px;
+ overflow: scroll;
+ resize: none;
+}
+
+.header > small {
+ color: #dde;
}
.post-content {
overflow: auto;
- background-color: #eee;
+ background-color: white;
padding: 12px 8px;
- margin: 2px 0px;
+ border: 1px solid forestgreen;
display: block;
}
-.youtube-embed {
- width: 480px;
- height: 270px;
- border: none;
+.image-embed {
+ max-height: 80vh;
}
-.image-embed {
- width: 480px;
+@keyframes bgslide {
+ from { background-position: 0 0px }
+ to { background-position: -5402px 0px }
}
-textarea {
- width: 100%;
- height: 200px;
- margin-right: 0px;
- overflow: scroll;
- resize: none;
+#banner {
+ background-image: url("../img/banner.jpg");
+ background-repeat: repeat;
+
+ animation: bgslide 300s infinite linear;
+ height: 60px;
}
-blockquote {
- background-color: #DDE0E6;
+.success {
+ background-color: #efe;
margin: 8px 40px 14px 18px;
padding: 12px;
- border: 1px solid #9FAFC7;
+ border: 1px solid #aea;
overflow: hidden;
border-radius: 5px;
}
+
+.error {
+ background-color: #fee;
+ margin: 8px 40px 14px 18px;
+ padding: 12px;
+ border: 1px solid #eaa;
+ overflow: hidden;
+ border-radius: 5px;
+}
+
+.info {
+ color: #666;
+} \ No newline at end of file