Add CSS and FETA page for web demo

This commit is contained in:
Michael Pivato
2019-01-15 09:31:40 +10:30
parent 3d25d33662
commit 1731857f6a
2 changed files with 37 additions and 0 deletions

11
Web/css/index.css Normal file
View File

@@ -0,0 +1,11 @@
.big-button{
height: 100%;
width: 100%;
font-size: 20px
}
.tall-button{
height: 80px;
margin: 10px 0px;
}

26
Web/feta.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<header>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/index.css" />
<script src="js/areyousatisfied.js"></script>
</header>
<body>
<div class="container">
<h1>Fault Exempting Telemetary Architecture</h1>
<div class="row">
<div class="col-sm-4 tall-button">
<button id="readyButton" class="big-button">Ready?</button>
</div>
<div class="col-sm-4 tall-button">
<button id="yesButton" class="big-button" style="display: none">YES!</button>
</div>
<div class="col-sm-4 tall-button">
<button id="noButton" class="big-button" style="display: none">no :`(</button>
</div>
</div>
</div>
</body>
</html>