forked from hjh010501/neis-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request hjh010501#7 from hjh010501/feature/hit-counter
feat: hit counter
- Loading branch information
Showing
2 changed files
with
79 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,120 +1,125 @@ | ||
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css); | ||
|
||
@font-face { | ||
font-family: 'Noto Sans KR'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype'); | ||
font-family: "Noto Sans KR"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) | ||
format("woff2"), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) | ||
format("woff"), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) | ||
format("opentype"); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Noto Sans KR Bold'; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff'), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format('opentype'); | ||
font-family: "Noto Sans KR Bold"; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) | ||
format("woff2"), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) | ||
format("woff"), | ||
url(https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) | ||
format("opentype"); | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
font-family: 'Noto Sans KR Bold'; | ||
color: #1d1a1a; | ||
letter-spacing: -1px; | ||
text-decoration: none; | ||
font-family: "Noto Sans KR Bold"; | ||
color: #1d1a1a; | ||
letter-spacing: -1px; | ||
} | ||
|
||
body { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Noto Sans KR'; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin: 0; | ||
padding: 0; | ||
font-family: "Noto Sans KR"; | ||
} | ||
|
||
.center { | ||
width: 800px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 20px; | ||
width: 800px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.center > span { | ||
width: 100%; | ||
width: 100%; | ||
} | ||
|
||
.center > div { | ||
width: 100%; | ||
width: 100%; | ||
} | ||
|
||
.title { | ||
font-family: 'Noto Sans KR Bold'; | ||
font-size: 20pt; | ||
letter-spacing: -1.25px; | ||
color: #1d1a1a; | ||
font-family: "Noto Sans KR Bold"; | ||
font-size: 20pt; | ||
letter-spacing: -1.25px; | ||
color: #1d1a1a; | ||
} | ||
|
||
.title_underbar { | ||
width: 30px; | ||
height: 4px; | ||
background: #1d1d1d; | ||
margin-top: 20px; | ||
margin-bottom: 30px; | ||
width: 30px; | ||
height: 4px; | ||
background: #1d1d1d; | ||
margin-top: 20px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.counter { | ||
font-family: 'Noto Sans KR'; | ||
font-size: 11pt; | ||
border: 0; | ||
resize: none; | ||
border: 1px solid #ddd; | ||
width: 800px; | ||
height: 400px; | ||
outline: 0; | ||
padding: 25px; | ||
line-height: 25px; | ||
|
||
font-family: "Noto Sans KR"; | ||
font-size: 11pt; | ||
border: 0; | ||
resize: none; | ||
border: 1px solid #ddd; | ||
width: 800px; | ||
height: 400px; | ||
outline: 0; | ||
padding: 25px; | ||
line-height: 25px; | ||
} | ||
|
||
.result { | ||
font-family: 'Noto Sans KR Bold'; | ||
font-size: 20pt; | ||
letter-spacing: -1.25px; | ||
color: #1d1a1a; | ||
text-align: right; | ||
margin-top: 20px; | ||
font-family: "Noto Sans KR Bold"; | ||
font-size: 20pt; | ||
letter-spacing: -1.25px; | ||
color: #1d1a1a; | ||
text-align: right; | ||
margin-top: 20px; | ||
} | ||
|
||
table { | ||
width: 100%; | ||
text-align: center; | ||
font-family: 'Noto Sans KR'; | ||
letter-spacing: -1.25px; | ||
border: 1px solid #fff; | ||
font-size: 14pt; | ||
margin-top: 20px; | ||
width: 100%; | ||
text-align: center; | ||
font-family: "Noto Sans KR"; | ||
letter-spacing: -1.25px; | ||
border: 1px solid #fff; | ||
font-size: 14pt; | ||
margin-top: 20px; | ||
} | ||
|
||
th { | ||
background: #1d1d1d; | ||
font-weight: 400; | ||
color: #fff; | ||
padding: 10px; | ||
background: #1d1d1d; | ||
font-weight: 400; | ||
color: #fff; | ||
padding: 10px; | ||
} | ||
td { | ||
background-color: #ededed; | ||
color: #1d1d1d; | ||
padding: 10px; | ||
background-color: #ededed; | ||
color: #1d1d1d; | ||
padding: 10px; | ||
} | ||
|
||
.footbar { | ||
margin-top: 60px ; | ||
margin-top: 45px; | ||
} | ||
|
||
.footbar_content { | ||
width: 800px; | ||
margin: 0 auto; | ||
width: 800px; | ||
margin: 0 auto; | ||
} |