From d6fea9afbb9c5469f47e2173d1ae5445364625ff Mon Sep 17 00:00:00 2001
From: Eli
Date: Sat, 3 Apr 2021 19:03:27 +0700
Subject: [PATCH] Initial upload
Initialized with just a mock-up layout of the index page up
---
200x200.svg | 1 +
footer.php | 21 ++++++++++++++++
header.php | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++
index.php | 52 +++++++++++++++++++++++++++++++++++++++
styles.css | 22 +++++++++++++++++
5 files changed, 166 insertions(+)
create mode 100644 200x200.svg
create mode 100644 footer.php
create mode 100644 header.php
create mode 100644 index.php
create mode 100644 styles.css
diff --git a/200x200.svg b/200x200.svg
new file mode 100644
index 0000000..3e0fb96
--- /dev/null
+++ b/200x200.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/footer.php b/footer.php
new file mode 100644
index 0000000..5336ad6
--- /dev/null
+++ b/footer.php
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..b23de49
--- /dev/null
+++ b/index.php
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+

+
+
+
+
+
+
+
+
+

+
+
+
+
+
+

+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..64d8ab0
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,22 @@
+.caption {
+ width:100%;
+ bottom: .3rem;
+ position: absolute;
+ background:#000;
+ background: -webkit-linear-gradient(bottom, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
+ background: -moz-linear-gradient(bottom, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
+ background: -o-linear-gradient(bottom, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
+ background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
+}
+
+.thumbnail {
+ border: 0 none;
+ box-shadow: none;
+ margin:0;
+ padding:0;
+}
+
+.caption h4 {
+ color: #fff;
+ -webkit-font-smoothing: antialiased;
+}
\ No newline at end of file