Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sdhoek/sleepmap
Browse files Browse the repository at this point in the history
  • Loading branch information
mi-oo committed Mar 27, 2018
2 parents 8a1ec55 + 305e87b commit 4020780
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
23 changes: 19 additions & 4 deletions src/app/map/from-to/from-to.component.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
.from-to-container {
left: 160px;

position: absolute;
top: 25px;
height: 250px;
width: 300px;

height: 52px;
width: 380px;
background: #f6be0e;
z-index: 500;
right: 40px;
top: 40px;
display:flex;
flex-direction: row;
padding: 10px;
}
label {
font-size: small;
}
input {
font-size: 110%;
width: 176px;
background: #f3ca44;
border: solid 2px black;
padding: 2px;
}
10 changes: 9 additions & 1 deletion src/app/map/from-to/from-to.component.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<div class="from-to-container">
from-to-container
<div id="from-container">
<label>van</label>
<input [(ngModel)]="van" placeholder="Kies een startpunt">
</div>
<div id="to-container">
<label>naar</label>

<input [(ngModel)]="naar" placeholder="Kies een bestemming">
</div>
</div>
2 changes: 1 addition & 1 deletion src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ app-map{

app-popup{
position: absolute;
top: 40px;
top: 116px;
z-index: 401;
background: #101010e8;
right: 40px;
Expand Down

0 comments on commit 4020780

Please sign in to comment.