Skip to content

Commit

Permalink
add basic html and css, images
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeker committed Feb 24, 2024
1 parent d95cacb commit eb266cb
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 0 deletions.
6 changes: 6 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
31 changes: 31 additions & 0 deletions static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
body {
font-family: sans-serif;
background: #5e4d47;
padding: 48px;
}

h1 {
color: #e1948d;
text-align: center;
font-size: 115px;
}

h3 {
color: #e1948d;
text-align: center;
font-size: 55px;
}

.card {
display: flex;
justify-content: center;
align-items: center;

margin: auto;
width: 90%;
aspect-ratio: 8 / 5;
border-radius: 7rem;
background: #fafafa;
padding: 10px;
}

Binary file added static/images/otter.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/otter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/otter2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions templates/mainScreen.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<title>DIVE DEEPER Mobile Web App</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='css/style.css') }}"
/>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<div class="title">
<h1>DIVE DEEPER</h1>
<nav>
<a href="{{ url_for('home')}}">Home</a>
</nav>
</div>
</div>
</header>
</div>

<div class="container">
<div class="card">
<h3>build deeper connections with people.<h3>
</div>
</div>

</body>
</html>

0 comments on commit eb266cb

Please sign in to comment.