Skip to content
This repository has been archived by the owner on Jan 5, 2022. It is now read-only.

Commit

Permalink
Edit CSS
Browse files Browse the repository at this point in the history
Changes:

* Replace guestType radio input with label to match org radio styling
* Center confirmation checkin screen

Signed-off-by: Briana Vecchione <[email protected]>
  • Loading branch information
brianavecchione committed Nov 23, 2016
1 parent 8816577 commit 632eb1c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
13 changes: 12 additions & 1 deletion css/checkin.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ p {
}

.guestType label {
padding-left: 5em;
padding-left: 3em;
padding-bottom: 1em;
}

Expand Down Expand Up @@ -193,6 +193,13 @@ div.top-banner p {
vertical-align:middle;
/* text-align:center;
*/}

div#step3 {
width: initial;
padding: 0;
padding-bottom: 6em;
}

button{
margin: 4% 0% 4%;
background-color: #66ad1c;
Expand Down Expand Up @@ -227,6 +234,10 @@ button.civicgraph-save {
width: 100%;
}

input#cb1, input#cb2, input#cb3, input#member, input#guest {
display: none !important;
}

input[type='text']{
border: 1px solid #DDDDDD;
height: 40px;
Expand Down
16 changes: 5 additions & 11 deletions modules/main/main.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ <h1>Check-In to Civic Hall</h1>

<!--Member vs. Guests-->
<div class="guestType">
<label for="member">

<br>

<input id="member"
Expand All @@ -77,23 +75,19 @@ <h1>Check-In to Civic Hall</h1>
ng-value="false"
ng-change="main.updateMemberStatus();"
name="string"
class="radio3 for-profit-background"
/>
class="radio3 non-profit-background"
/><label for="member">
Member
</label>

<label for="guest">

<br>

<input id="guest"
type="radio"
ng-model="editEntity.isGuest"
ng-value="true"
ng-change="main.updateMemberStatus();"
name="string"
class="radio3 for-profit-background"
/>
class="radio3 non-profit-background"
/><label for="guest">
Guest
</label>

Expand Down Expand Up @@ -221,7 +215,7 @@ <h1>Check-In to Civic Hall</h1>
<img src="/img/greenchecked.png" alt="success">
<br>
<h2>You're checked in!</h2>
<h3>Go to civicgraph.io to view and edit your network!</h3>
<!--<h3>Go to civicgraph.io to view and edit your network!</h3>-->
</div>
</div>
</form>
Expand Down

0 comments on commit 632eb1c

Please sign in to comment.