summaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authorAlmightyMiau <almightymeow612@gmail.com>2025-01-22 16:48:36 -0800
committerAlmightyMiau <almightymeow612@gmail.com>2025-01-22 16:48:36 -0800
commitc53b1e2e37c41c84e91b93a4e6ab531e9bc7007c (patch)
tree6212fb60f0bf666b8001ce121c69b08e5d6baa09 /styles.css
parent3339481855d6d659612ba9f70c460854a30c7550 (diff)
Implement styles.css from Miau-Website Repo
Add CSS to add background image, change font color, change font, add background color to h3, p, ul, and ol
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css46
1 files changed, 46 insertions, 0 deletions
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..bcf77fb
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,46 @@
+@font-face {
+ font-family: "FreePixel";
+ src: url("FreePixel.ttf") format("truetype");
+}
+
+:root {
+ --background-img: url("stars3.gif");
+ --background: #251a2d79;
+ --main-color-dk: #370c5a;
+ --main-color: #EB53D3;
+ --accent-1: #6eebff;
+ --accent-2: #d625e3;
+ --content-spacing: 5px;
+ --banner: url("miau.jpg");
+ --titleBars: #330b3f;
+ --text-color: white;
+ --border: 2px solid rgb(34, 34, 34);
+ --arrows: url('arrow.png');
+ --img-size: 150px;
+}
+
+html,
+body {
+ margin: 20;
+ box-sizing: border-box;
+ font-family: "FreePixel";
+}
+
+body {
+ background-image: var(--background-img);
+ color: var(--text-color);
+ background-attachment: fixed;
+}
+
+h3, p, ul, ol {
+ background-color: var(--background);
+}
+
+img {
+ width: 500px;
+ height: auto;
+}
+
+a {
+ color:var(--accent-2);
+} \ No newline at end of file