Skip to content

Commit 4bb3ca8

Browse files
committed
feat: add reset and colors
1 parent 7102c64 commit 4bb3ca8

4 files changed

Lines changed: 103 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
@import 'reset';
12
@import 'font';
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
/*! minireset.css v0.0.5 | MIT License | github.com/jgthms/minireset.css */
2+
// Blocks
3+
html,
4+
body,
5+
p,
6+
ol,
7+
ul,
8+
li,
9+
dl,
10+
dt,
11+
dd,
12+
blockquote,
13+
figure,
14+
fieldset,
15+
legend,
16+
textarea,
17+
pre,
18+
iframe,
19+
hr,
20+
h1,
21+
h2,
22+
h3,
23+
h4,
24+
h5,
25+
h6 {
26+
margin: 0;
27+
padding: 0;
28+
}
29+
30+
// Headings
31+
h1,
32+
h2,
33+
h3,
34+
h4,
35+
h5,
36+
h6 {
37+
font-size: 100%;
38+
font-weight: normal;
39+
}
40+
41+
// List
42+
ul {
43+
list-style: none;
44+
}
45+
46+
// Form
47+
button,
48+
input,
49+
select,
50+
textarea {
51+
margin: 0;
52+
}
53+
54+
// Box sizing
55+
html {
56+
box-sizing: border-box;
57+
}
58+
59+
* {
60+
&,
61+
&::before,
62+
&::after {
63+
box-sizing: inherit;
64+
}
65+
}
66+
67+
// Media
68+
img,
69+
video {
70+
height: auto;
71+
max-width: 100%;
72+
}
73+
74+
// Iframe
75+
iframe {
76+
border: 0;
77+
}
78+
79+
// Table
80+
table {
81+
border-collapse: collapse;
82+
border-spacing: 0;
83+
}
84+
85+
td,
86+
th {
87+
padding: 0;
88+
text-align: left;
89+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
$yellow: #ffcf00;
2+
$peach: #ee2a3e;
3+
$blue: #032e53;
4+
$green: #00a12f;
5+
$grey: #d3d3d3;
6+
$white: #fff;
7+
$black: #000;
8+
9+
$navbar-color: $blue;
10+
$navbar-menu-color: $peach;
11+
12+
$link-color: $white;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
@import 'breakpoints';
2+
@import 'colors';
23
@import 'container';
34
@import 'font';

0 commit comments

Comments
 (0)