Skip to content

Commit e85a82c

Browse files
committed
Update
1 parent 53617ae commit e85a82c

9 files changed

+2442
-278
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

yacss.css renamed to base.css

+46-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

base.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

base.scss

+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
/* ***********************************
2+
*
3+
* Ire's CSS Reset & Base
4+
*
5+
* *********************************** */
6+
7+
/* Reset margin, padding, border
8+
* *********************************** */
9+
10+
html, body,
11+
h1, h2, h3, h4, h5, h6,
12+
a, p, span,
13+
em, small, strong,
14+
sub, sup,
15+
mark, del, ins,
16+
abbr, dfn,
17+
blockquote, q, cite,
18+
code, pre,
19+
ol, ul, li, dl, dt, dd,
20+
div, section, article,
21+
main, aside, nav,
22+
header, hgroup, footer,
23+
img, figure, figcaption,
24+
address, time,
25+
audio, video,
26+
canvas, iframe,
27+
details, summary,
28+
fieldset, form, label, legend,
29+
table, caption,
30+
tbody, tfoot, thead,
31+
tr, th, td {
32+
margin: 0;
33+
padding: 0;
34+
border: 0;
35+
}
36+
37+
/* Typography
38+
* *********************************** */
39+
40+
html {
41+
font-size: 62.5%;
42+
}
43+
44+
body {
45+
font-size: 1.6rem;
46+
line-height: 1.4;
47+
}
48+
49+
* {
50+
font: inherit;
51+
}
52+
53+
strong {
54+
font-weight: bold;
55+
}
56+
57+
em {
58+
font-style: italic;
59+
}
60+
61+
small,
62+
sup,
63+
sub {
64+
font-size: small;
65+
}
66+
67+
a,
68+
a:visited {
69+
color: inherit;
70+
}
71+
72+
/* Layout
73+
* *********************************** */
74+
75+
article,
76+
aside,
77+
footer,
78+
header,
79+
nav,
80+
section,
81+
main {
82+
display: block;
83+
}
84+
85+
* {
86+
box-sizing: border-box;
87+
}
88+
89+
*:before,
90+
*:after {
91+
box-sizing: inherit;
92+
}
93+
94+
/* Elements
95+
* *********************************** */
96+
97+
table {
98+
border-collapse: collapse;
99+
border-spacing: 0;
100+
}
101+
102+
ol,
103+
ul {
104+
list-style: none;
105+
}
106+
107+
img,
108+
video {
109+
max-width: 100%;
110+
}
111+
112+
img {
113+
border-style: none;
114+
}
115+
116+
/* Attributes & states
117+
* *********************************** */
118+
119+
[hidden] {
120+
display: none !important;
121+
}
122+
123+
[disabled] {
124+
cursor: not-allowed;
125+
}
126+
127+
:focus:not(:focus-visible) {
128+
outline: none;
129+
}
130+
131+
/* Utility classes
132+
* *********************************** */
133+
134+
.sr-only {
135+
position: absolute;
136+
clip: rect(1px, 1px, 1px, 1px);
137+
left: -9999px;
138+
top: -9999px;
139+
}

0 commit comments

Comments
 (0)