Skip to content

Commit

Permalink
Fixed Requested Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TekuConcept committed Apr 30, 2017
1 parent 37abf70 commit d5026ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
6 changes: 3 additions & 3 deletions BoneCentral/WebApplication/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<script type="riot/tag">
<get-tag>
<div>
<button class="button button1" onclick={ toggle }>{ url }</button>
<button class="button" onclick={ toggle }>{ url }</button>
<p>Result:</p><textarea type="textarea" value="{ result }" style="min-width: 30em; min-height: 40em;">
</div>

Expand Down Expand Up @@ -45,7 +45,7 @@
</get-tag>
<single-get-tag>
<div>
<button class="button button1" onclick={ get }>{ url }</button>
<button class="button" onclick={ get }>{ url }</button>
<p>Result: { result }</p>
</div>

Expand All @@ -65,7 +65,7 @@
</single-get-tag>
<post-tag>
<div>
<button class="button button1" onclick={ post }>{ url }</button><button class="button button1" onclick={ toggleAbsolute }>Toggle Slider</button>
<button class="button" onclick={ post }>{ url }</button><button class="button" onclick={ toggleAbsolute }>Toggle Slider</button>
<div each={ argument, i in arguments }>
<span>{ argument }</span>
<input type={ inputType } onchange={ update } oninput={ update } id={ argument } min={ min } max={ max } step={ step } value="0"/>
Expand Down
14 changes: 4 additions & 10 deletions BoneCentral/WebApplication/static/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
background-color: white;
border: 2px solid #008CBA;
color: black;
padding: 16px 32px;
text-align: center;
text-decoration: none;
Expand All @@ -13,13 +13,7 @@
cursor: pointer;
}

.button1 {
background-color: white;
color: black;
border: 2px solid #008CBA;
}

.button1:hover {
.button:hover {
background-color: #008CBA;
color: white;
}

0 comments on commit d5026ff

Please sign in to comment.