summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'index.css')
-rw-r--r--index.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..9b227ac
--- /dev/null
+++ b/index.css
@@ -0,0 +1,54 @@
+body {
+ /* Background colour is matched to the image for cleaner loading */
+ background-color: #9097a3;
+ background-image: url("images/pkz50037.jpg");
+ color: pink;
+ margin: 60px;
+ font-family: monospace;
+}
+
+h1 {
+ text-decoration: underline;
+}
+
+h2 {
+ font-family: tintin;
+}
+
+img {
+ /* Ensured images don't go oversize */
+ max-width: 80%;
+}
+
+a {
+ color: orange;
+}
+
+p {
+ color: white;
+ font-size: large;
+ padding-left: 10px;
+}
+
+#wrapper {
+ /* This bit styles the content area and gives it a blur */
+ background-color: #2030e5;
+ box-shadow: 0px 0px 40px 40px #2030e5;
+ padding: 10px;
+ /* This bit makes it centred on big screens */
+ max-width: 900px;
+ margin: auto;
+}
+
+.example {
+ background-color: rgb(46, 72, 51);
+ border: 2px double rgb(232, 219, 39);
+ border-radius: 25px;
+ padding: 10px;
+ margin: 5px;
+}
+
+@font-face {
+ font-family: tintin;
+ src: url(fonts/tintin_talking.ttf);
+} \ No newline at end of file