김유현

Modify color

......@@ -18,8 +18,8 @@ a.button {
transform: translate(-50%, -50%);
transition: all .4s; }
a.button:hover {
border-color: #3ac28c;
color: #3ac28c; }
border-color: #af71af;
color: #af71af; }
.modal-overlay {
background: #333;
......@@ -54,7 +54,7 @@ a.button {
display: block;
width: 2px;
height: 36px;
background-color: #3ac28c;
background-color: #af71af;
top: -5px; }
.modal-wrapper .close:before {
transform: rotate(45deg); }
......@@ -94,8 +94,8 @@ a.button {
font-family: 'Exo', sans-serif;
cursor: pointer; }
.message-form .input-button .button:hover {
color: #3ac28c;
border-color: #3ac28c; }
color: #af71af;
border-color: #af71af; }
.message-form .input-button .button2 {
border: 1px solid #fff;
background-color: transparent;
......@@ -105,8 +105,8 @@ a.button {
font-family: 'Exo', sans-serif;
cursor: pointer; }
.message-form .input-button .button2:hover {
color: #3ac28c;
border-color: #3ac28c; }
color: #af71af;
border-color: #af71af; }
.message-form .input-box {
font-size: 16px;
line-height: 24px;
......@@ -115,7 +115,7 @@ a.button {
display: block;
position: relative; }
.message-form .input-box.focus .input-label {
color: #3ac28c;
color: #af71af;
transform: perspective(1px) scale(0.75) translate3d(0, -18px, 0); }
.message-form .input-box.focus .underline-focus {
transform: scaleX(1); }
......@@ -176,7 +176,7 @@ a.button {
margin: 0;
box-sizing: content-box;
height: 0;
border-color: #3ac28c;
border-color: #af71af;
transform: scaleX(0);
transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; }
......
......@@ -45,6 +45,7 @@
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
if (hours > 12)
{ hours -= 12;
ampm = "오후 ";
......@@ -60,7 +61,7 @@
}
document.getElementById("dpTime").innerHTML = "현재 시간 : "+ ampm + hours + ":" + minutes + ":" + seconds;
if (hours < workTime){
document.getElementById("moneyPerSec").innerHTML = "출근할 때 까지 " + String(workTime -hours) + "시간 남았당";
document.getElementById("moneyPerSec").innerHTML = "출근할 때까지 " + String(workTime - hours) + "시간 남았당";
}
else{
moneyPerSec += salary/(60*60*(offWork - workTime)*workingDayNum*30);
......