-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christopher Ball
authored and
Christopher Ball
committed
May 16, 2020
1 parent
b37afaf
commit af18894
Showing
16 changed files
with
541 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
color: #444; | ||
} | ||
/* | ||
* Formatting the header area | ||
*/ | ||
header { | ||
background-color: #3C6A93; | ||
height: 35px; | ||
width: 100%; | ||
margin-bottom: 10px; | ||
} | ||
header h1.logo { | ||
margin: 0; | ||
font-size: 1.7em; | ||
float: left; | ||
} | ||
header h1.logo:hover { | ||
text-decoration: none; | ||
} | ||
.container { | ||
width: 400px; | ||
margin: auto; | ||
} | ||
div.home { | ||
padding: 10px 0 30px 0; | ||
background-color: #fff; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
border-radius: 6px; | ||
} | ||
div.about { | ||
padding: 10px 0 30px 0; | ||
background-color: #fff; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
border-radius: 6px; | ||
} | ||
div.secret { | ||
padding: 100px 0 30px 0; | ||
background-color: #fff; | ||
-webkit-border-radius: 6px; | ||
-moz-border-radius: 6px; | ||
border-radius: 6px; | ||
} | ||
h2 { | ||
font-size: 3em; | ||
margin-top: 40px; | ||
text-align: center; | ||
letter-spacing: -2px; | ||
} | ||
h3 { | ||
font-size: 1em; | ||
margin-top: 30px; | ||
text-align: center; | ||
letter-spacing: 1px; | ||
color: black; | ||
} | ||
.center { | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 90%; | ||
} | ||
.center_box { | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
.config_box { | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
.submit_center{ | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width:100px; | ||
height:40px; | ||
background-color:#111111; | ||
border:2px solid #FFFFFF; | ||
border-radius:10px; | ||
color:#FFFFFF; | ||
font-size:17px; | ||
cursor:pointer !important; | ||
outline:none; | ||
} | ||
.menu { | ||
float: left; | ||
margin-top: 8px; | ||
} | ||
.menu li { | ||
display: inline; | ||
} | ||
.menu li + li { | ||
margin-left: 35px; | ||
} | ||
.menu li a { | ||
color: #fff; | ||
text-decoration: none; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{% extends "base.html" %} | ||
{% block custom_styles %} | ||
nav { | ||
background-color: #5B6982; | ||
min-height: 40px; | ||
} | ||
{% endblock %} | ||
{% block title %} | ||
<h1 style="font-family: Helvetica Neue; font-size: 40px; color: #5B6982;">Virtual Visits</h1> | ||
<hr style="height: 2px; background-color: #E7E6E6;"/> | ||
{% endblock %} | ||
{% block reset_meeting_success_alert_text %} | ||
Your new meeting link was successfully created. | ||
{% endblock %} | ||
{% block reset_meeting_failure_alert_text %} | ||
Whoops! Something went wrong.\nPlease wait a moment and try again. | ||
{% endblock %} | ||
{% block reset_meeting_button_text %} | ||
Create New Meeting Link | ||
{% endblock %} | ||
{% block device_setup_instructions %} | ||
<p><i>Use the copy options below to setup your device.</i></p> | ||
{% endblock %} | ||
{% block send_email_failure_alert_text %} | ||
There was a problem sending your invite.\n\nCheck that you have correctly filled out the form and try again. | ||
{% endblock %} | ||
{% block send_email_button_text %} | ||
Send Email | ||
{% endblock %} | ||
{% block start_meeting_button_text %} | ||
Start Meeting | ||
{% endblock %} | ||
{% block email_instructions %} | ||
<p>Use the form below to send your meeting URL to your family and friends.</p> | ||
<p><i>The meeting link will be included below your message.</i></p> | ||
{% endblock %} | ||
{% block email_recipients_label %} | ||
<b>Recipient's e-mail address:</b> | ||
{% endblock %} | ||
{% block email_message_label %} | ||
<label for="message"><b>Message:</b></label> | ||
{% endblock %} | ||
{% block email_message %} | ||
Please join my video conferencing call. | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{% macro input(name, value='', type='text', size=20) -%} | ||
<input type="{{ type }}" name="{{ name }}" value="{{value|e }}" size="{{ size }}"> | ||
{%- endmacro %} | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Directory</title> | ||
<script> | ||
$(document).ready(function() { | ||
$(".submit").click(function() { | ||
$(".submit").addClass("loading"); | ||
setTimeout(function() { | ||
$(".submit").addClass("hide-loading"); | ||
$(".done").addClass("finish"); | ||
}, 1000000); | ||
setTimeout(function() { | ||
$(".submit").removeClass("loading"); | ||
$(".submit").removeClass("hide-loading"); | ||
$(".done").removeClass("finish"); | ||
$(".failed").removeClass("finish"); | ||
}, 1000000); | ||
}) | ||
}); | ||
</script> | ||
<meta name="msapplication-TileColor" content="#ffffff"> | ||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='css/main2.css') }}"> | ||
</head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<body> | ||
<header> | ||
<div class="container"> | ||
<h1 class="logo"></h1> | ||
</div> | ||
</header> | ||
<div class="container"> | ||
|
||
{% block content %} | ||
{% endblock %} | ||
</div> | ||
</body> | ||
<footer> | ||
{% if username %} | ||
{% endif %} | ||
</footer> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.