commit 9d9dee7e5f1bff45e8fb3975bb3603e2ecf35a30
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date: Sat, 27 Feb 2021 19:48:53 -0800
Add files
Diffstat:
3 files changed, 43 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -0,0 +1,2 @@
+# physics-simulations
+A collection of physics simulations
+\ No newline at end of file
diff --git a/index.css b/index.css
@@ -0,0 +1,23 @@
+* {
+ padding: 0px;
+ margin: 0px;
+ box-sizing: border-box;
+ font-family: Segoe UI, sans-serif;
+}
+
+#app {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+
+header {
+ background-color: #48d1cc;
+ width: 100%;
+ text-align: center;
+ padding: 10px;
+ margin-bottom: 10px;
+}
+header h1 {
+ font-size: 25px;
+}
diff --git a/index.html b/index.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>Physics Simulations</title>
+ <meta name="viewport" content="width=device-width">
+ <link rel="stylesheet" href="index.css">
+ </head>
+ <body>
+ <div id="app">
+ <header>
+ <h1>Physics Simulations</h1>
+ </header>
+
+ <p>A collection of physics simulations</p>
+ </body>
+</html>