Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김유현
/
How much are you earning now
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김유현
2019-12-11 02:54:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
068aed5d177428f33abb0614738d386b74550be7
068aed5d
1 parent
2787fe1b
Modify color
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
public/css/index_style.css
public/graph.html
public/css/index_style.css
View file @
068aed5
...
...
@@ -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
;
}
...
...
public/graph.html
View file @
068aed5
...
...
@@ -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
);
...
...
Please
register
or
login
to post a comment