Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[최주혁] sprint1 #17

17 changes: 17 additions & 0 deletions assets/css/font.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@charset "utf-8";

@import url('https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css');

@font-face {
font-family: 'ROKAFSansMedium';
font-style: normal;
font-weight: 500;
src: url('../font/ROKAFSans/ROKAFSansMedium.otf') format('off');
JuhyeokC marked this conversation as resolved.
Show resolved Hide resolved
}

@font-face {
font-family: 'ROKAFSansBold';
font-style: normal;
font-weight: 700;
src: url('../font/ROKAF-Sans/ROKAFSansBold.otf') format('off');
}
365 changes: 365 additions & 0 deletions assets/css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,365 @@
@charset "utf-8";

/*
@ RESET CSS | v1.0
================
reset + normalize
Chrome, Safari, FireFox, Opera, IE
Unify browser style
================
normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
*/

*,
*:before,
*:after {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
display: block;
}

summary {
display: list-item;
}

audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}

audio:not([controls]) {
display: none;
height: 0;
}

html {
line-height: 1;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}

body {
position: relative;
font-style: normal;
font-weight: normal;
}

div {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

nav,
ul,
ol,
li {
list-style: none;
}

input,
select,
button,
textarea,
optgroup {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
vertical-align: middle;
text-transform: none;
overflow: visible;
}

textarea {
overflow: auto;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
appearance: button;
-webkit-appearance: button;
cursor: pointer;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
border-style: none;
padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
outline: 1px dotted ButtonText;
}

[type='checkbox'],
[type='radio'] {
box-sizing: border-box;
margin: 0;
padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
height: auto;
}

[type='search'] {
-webkit-appearance: textfield;
outline-offset: 0;
}

[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
}

::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}

fieldset {
padding: 0.35em 0.75em 0.625em;
}

legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

th,
td {
padding: 0;
vertical-align: middle;
}

caption {
position: absolute;
top: auto;
left: -9999px;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
overflow: hidden;
text-indent: -9999px;
}

img {
border: 0;
font-size: 0;
line-height: 0;
}

h1 {
font-size: 2em;
margin: 0.67em 0;
}

hr {
height: 0;
overflow: visible;
}

blockquote,
q {
quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}

p,
textarea {
line-height: 1.6;
}

a {
background-color: transparent;
color: inherit;
text-decoration: none;
}

a:hover,
a:focus,
a:active {
outline: 0;
}

b,
strong {
font-weight: bolder;
}

small {
font-size: 80%;
}

sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
}

sup {
top: -0.5em;
}

sup {
bottom: -0.25em;
}

del {
text-decoration: line-through;
}

em,
address {
font-style: normal;
}

code,
kbd,
samp,
pre {
font-family: monospace, monospace;
font-size: 1em;
}

abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
}

[hidden],
template {
display: none;
}
Loading
Loading