-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new test view (incomplete) A few css tweaks
- Loading branch information
frostwind
committed
Jan 24, 2015
1 parent
f563394
commit 359ea6d
Showing
21 changed files
with
374 additions
and
128 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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,31 @@ | ||
@font-face { | ||
font-family: 'fontello'; | ||
src: url('../fonts/fontello.eot?64691259'); | ||
src: url('../fonts/fontello.eot?64691259#iefix') format('embedded-opentype'), | ||
url('../fonts/fontello.woff?64691259') format('woff'), | ||
url('../fonts/fontello.ttf?64691259') format('truetype'), | ||
url('../fonts/fontello.svg?64691259#fontello') format('svg'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Pacifico'; | ||
src: url('../fonts/Pacifico.ttf'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Montserrat'; | ||
src: url('../fonts/Montserrat-Regular.ttf'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Montserrat'; | ||
src: url('../fonts/Montserrat-Bold.ttf'); | ||
font-weight: bold; | ||
font-style: normal; | ||
} |
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
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,38 @@ | ||
<section id="hero"> | ||
<div class="container"> | ||
<h2>A load/stress testing tool without... stress</h2> | ||
<a href="/#/new">Try me !</a><a href="https://github.com/gophergala/gopherling">Contribute</a> | ||
</div> | ||
</section> | ||
|
||
<section id="how-to"> | ||
<div class="container"> | ||
<h2>How it works</h2> | ||
<ul> | ||
<li> | ||
<span> | ||
<i class="icon-docs"></i> | ||
</span> | ||
<p>Create a new test</p> | ||
</li> | ||
<li> | ||
<span> | ||
<i class="icon-plus-squared"></i> | ||
</span> | ||
<p>Add a list of tasks to run</p> | ||
</li> | ||
<li> | ||
<span> | ||
<i class="icon-eye"></i> | ||
</span> | ||
<p>Monitor the requests in real-time</p> | ||
</li> | ||
</ul> | ||
</div> | ||
</section> | ||
|
||
<footer> | ||
<div class="container"> | ||
<span>Gopherling is developed by Frostwind for the Gophergala.</span> | ||
</div> | ||
</footer> |
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,55 @@ | ||
<section class="subheader"> | ||
<div class="container"> | ||
<h2>Add a new test</h2> | ||
</div> | ||
</section> | ||
|
||
<section id="new"> | ||
<div class="container"> | ||
<form action=""> | ||
<fieldset> | ||
<label for="">Name</label> | ||
<input type="text" placeholder="My awesome test"> | ||
</fieldset> | ||
<fieldset> | ||
<label for="">Description</label> | ||
<input type="text" placeholder="This is the best test ever made in human history"> | ||
</fieldset> | ||
<fieldset> | ||
<label for="">Base URI</label> | ||
<input type="text" placeholder="http://gopherling.tld:8080"> | ||
</fieldset> | ||
<fieldset> | ||
<label for="">Number of users</label> | ||
<input type="text" placeholder="Test name"> | ||
</fieldset> | ||
<fieldset> | ||
<label for="">Users spawn/second</label> | ||
<input type="text" placeholder="Test name"> | ||
</fieldset> | ||
</form> | ||
<form action=""> | ||
<fieldset> | ||
<ul> | ||
<li> | ||
<label for="">Method</label> | ||
<select id="" name=""> | ||
<option value="GET">GET</option> | ||
<option value="POST">POST</option> | ||
<option value="PUT">PUT</option> | ||
<option value="DELETE">DELETE</option> | ||
</select> | ||
</li> | ||
<li> | ||
<label for="">Host</label> | ||
<input type="text" disabled> | ||
</li> | ||
<li> | ||
<label for="">Path</label> | ||
<input type="text"> | ||
</li> | ||
</ul> | ||
</fieldset> | ||
</form> | ||
</div> | ||
</section> |
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.
Binary file not shown.
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
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,3 @@ | ||
input:disabled { | ||
opacity: 0.4; | ||
} |
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,25 @@ | ||
@font-face { | ||
font-family: 'fontello'; | ||
src: url("../fonts/fontello.eot?64691259"); | ||
src: url("../fonts/fontello.eot?64691259#iefix") format('embedded-opentype'), url("../fonts/fontello.woff?64691259") format('woff'), url("../fonts/fontello.ttf?64691259") format('truetype'), url("../fonts/fontello.svg?64691259#fontello") format('svg'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
@font-face { | ||
font-family: 'Pacifico'; | ||
src: url("../fonts/Pacifico.ttf"); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
@font-face { | ||
font-family: 'Montserrat'; | ||
src: url("../fonts/Montserrat-Regular.ttf"); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
@font-face { | ||
font-family: 'Montserrat'; | ||
src: url("../fonts/Montserrat-Bold.ttf"); | ||
font-weight: bold; | ||
font-style: normal; | ||
} |
Oops, something went wrong.