Skip to content

Commit

Permalink
Couple of fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmatw committed Feb 12, 2020
1 parent 54f8644 commit 9e0402f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
13 changes: 7 additions & 6 deletions client/src/components/Login/LStackBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

<style scoped>
.box {
width: 28%;
height: 170px;
width: 27%;
height: 165px;
background-color: #000;
color: #fff;
opacity: 0.9;
Expand All @@ -25,10 +25,11 @@
padding: 0px;
border-radius: 10px;
padding: 20px;
border: none;
box-shadow: 5px #aaa;
border: 1px solid #000;
box-shadow: 7px 7px #eeefef;
}
.box h4 {
font-size: 23px;
color: #fff;
margin-bottom: 2px;
}
Expand All @@ -37,7 +38,7 @@
font-size: 14px;
}
.wrapper {
width: 60%;
width: 55%;
margin: 0px;
padding-left: 0px;
padding-right: 5px;
Expand All @@ -47,7 +48,7 @@
}
.col {
margin-right: 15px;
height: 25px;
height: 28px;
background-blend-mode: overlay;
background-repeat: no-repeat;
background-position: center;
Expand Down
17 changes: 11 additions & 6 deletions client/src/components/Login/Lbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<input class="input-box" type="Password" name="password" placeholder="PASSWORD">
</div>
<div>
<label class="clr">Keep me signed in</label>
<label>Keep me signed in</label>
<input type="checkbox" name="check1" value="">
</div>
<div>
Expand All @@ -21,7 +21,7 @@

<style scoped>
.box {
width: 34%;
width: 33%;
height: 65%;
background-color: #fff;
top: 63%;
Expand All @@ -35,7 +35,7 @@
padding-right: 50px;
border-radius: 10px;
border: none;
box-shadow: 2px 2px #aaa
box-shadow: 3px 3px #ceced1
}
input[type="submit"] {
width: 100%;
Expand All @@ -44,18 +44,23 @@
color: #fff;
height: 40px;
opacity: 0.9;
border-radius: 3px;
box-shadow: 5px 5px #eeefef;
font-size: 19px;
}
.input-box {
font-size: 14px;
width: 100%;
padding-left: 10px;
padding-left: 15px;
margin-top: 30px;
height: 50px;
border: 1px solid #aaa;
border: 1px solid #dedee0;
box-shadow: 4px 4px #eeefef;
}
.box label {
font-size: 14px;
padding-top: 15px;
padding-right: 12px;
padding-bottom: 15px;
}
</style>

0 comments on commit 9e0402f

Please sign in to comment.