From 98812d9386e35dc7a18fb819d9fee3ec704053a2 Mon Sep 17 00:00:00 2001 From: AtHeartEngineer <1675654+AtHeartEngineer@users.noreply.github.com> Date: Mon, 28 Mar 2022 11:38:43 -0400 Subject: [PATCH] initial commit --- eth.svg | 4 ++++ github.svg | 1 + globe.svg | 3 +++ index.html | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ styles.css | 33 ++++++++++++++++++++++++++++++++ 5 files changed, 97 insertions(+) create mode 100644 eth.svg create mode 100644 github.svg create mode 100644 globe.svg create mode 100644 index.html create mode 100644 styles.css diff --git a/eth.svg b/eth.svg new file mode 100644 index 0000000..551c5cb --- /dev/null +++ b/eth.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/github.svg b/github.svg new file mode 100644 index 0000000..612aff1 --- /dev/null +++ b/github.svg @@ -0,0 +1 @@ +GitHub \ No newline at end of file diff --git a/globe.svg b/globe.svg new file mode 100644 index 0000000..772ee87 --- /dev/null +++ b/globe.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..389c235 --- /dev/null +++ b/index.html @@ -0,0 +1,56 @@ + + + + + + + + Privacy and Scaling Exploration Landing Page + + + + + + + + + + + +
+
+
+ + +

Welcome to Privacy and Scaling Exploration Landing Page

+
+
+ + + +
+
+
+
+
+

Project

+

+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi officiis obcaecati eius cupiditate ad animi assumenda fugiat nulla velit. +

+
+ + +
+
+
+ + +
+
+ + + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..0cbfd77 --- /dev/null +++ b/styles.css @@ -0,0 +1,33 @@ +body { + color: white; + background: rgb(0,0,0); + background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(93,93,93,1) 100%); + height: 100vh; + font-family: 'Inter', sans-serif; +} + +.title { + margin: 7rem auto 1rem; + text-align: center; + max-width: 600px; +} + +.title .ethlogo { + margin-bottom: 2rem; +} + +.arrow { + margin: 2rem auto; + text-align: center; +} + +.link { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.icon { + max-height: 2rem; +} \ No newline at end of file