summaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css81
1 files changed, 81 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..ae685e0
--- /dev/null
+++ b/style.css
@@ -0,0 +1,81 @@
+body
+{
+ background-color: black;
+ color: blue;
+ background-image: url('Background.png');
+ background-repeat: no-repeat;
+ background-position: left top;
+}
+
+a
+{
+ color: aqua;
+}
+
+a:visited
+{
+ color: lightpink;
+}
+
+a:hover
+{
+ color: deeppink;
+}
+
+body > header
+{
+ margin-left: 17em;
+ margin-bottom:2em;
+}
+
+header > img
+{
+ width: 70%;
+}
+
+aside
+{
+ float: left;
+ width: 13em;
+}
+
+nav
+{
+ background-color: black;
+ width: 13em;
+ padding: 0.5em;
+ border-color: blue;
+ border-style: double ;
+ border-width: 3px;
+}
+
+section
+{
+ margin-top: 2em;
+ margin-left: 17em;
+ background-color: black;
+ margin-right: 2em;
+ padding: 1em;
+ border-color: blue;
+ border-style: double ;
+ border-width: 3px;
+}
+
+article > header
+{
+ font-size: 1.8em;
+ text-decoration: underline;
+}
+
+footer
+{
+ margin-top: 2em;
+ text-align:center;
+}
+
+footer > span
+{
+ border-color: blue;
+ border-style: double ;
+ border-width: 3px;
+}