Skip to content

Commit

Permalink
fix: Edit CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
leeduyoung committed Oct 22, 2020
1 parent 86ee68c commit 024c5c7
Show file tree
Hide file tree
Showing 6 changed files with 545 additions and 468 deletions.
2 changes: 1 addition & 1 deletion assets/js/bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/bundle.min.js.map

Large diffs are not rendered by default.

174 changes: 127 additions & 47 deletions src/Application.scss
Original file line number Diff line number Diff line change
@@ -1,70 +1,150 @@
// GLOBAL (Reset CSS)
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;
font-size: 100%;
font: inherit;
vertical-align: baseline;
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;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
html {
font-size: 10px;
@media (max-width: 450px) {
font-size: 7px;
}
font-size: 10px;

@media (max-width: 500px) {
font-size: 7px;
}
}
body {
line-height: 1;
font-family: 'Lato', 'sans-serif';
font-size: 1.6rem;
-webkit-font-smoothing: antialiased;
line-height: 1;
font-family: "Lato", "sans-serif";
font-size: 1.6rem;
-webkit-font-smoothing: antialiased;
}
ol, ul {
list-style: none;
ol,
ul {
list-style: none;
}
blockquote, q {
quotes: none;
blockquote,
q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
border-collapse: collapse;
border-spacing: 0;
}

// Application
.app-container {

}

// 높이 초기화
.clear {
zoom: 1;
clear: both;
zoom: 1;
clear: both;
}
.clear:after {
content: "";
display: block;
clear: both;
content: "";
display: block;
clear: both;
}
Loading

0 comments on commit 024c5c7

Please sign in to comment.