Skip to content

Commit ada0206

Browse files
committed
Trying a handcrafted css
1 parent f01d8db commit ada0206

File tree

4 files changed

+1885
-2
lines changed

4 files changed

+1885
-2
lines changed

_layouts/default.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
{% seo title=false %}
66
{% include meta.html %}
77

8-
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/style.css" />
8+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/reset.css" />
9+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/site.css" />
10+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/svg-icons.css" />
911
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
1012
<link rel="canonical" href="{{ site.url }}{{ page.url }}" />
1113

@@ -14,7 +16,7 @@
1416
<meta name="linkedin:profile" content="marcusoftnet">
1517
<meta name="github:creator" content="marcusoftnet">
1618
<meta name="keywords"
17-
content="Marcus Hammarberg, marcusoftnet, Salvation: Bungsu story, Kanban In Action, agile, lean, kanban, software development, programming, HTMx, Node, Express, Salvation Army, life of a consultant, tools, testing, javascript, continuous delivery, specification by example, leadership, vision statements, impact mapping, mob programming, brass band, .NET, REST, API, C#, software">
19+
content="Marcus Hammarberg, marcusoftnet, Salvation: Bungsu story, Kanban In Action, agile, lean, kanban, software development, programming, HTMx, Node, Express, Salvation Army, life of a consultant, testing, javascript, continuous delivery, specification by example, impact mapping, mob programming, brass band, .NET, REST, API, C#, software">
1820

1921
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/img/favicon-32x32.png">
2022
{% include analytics_head.html %}

assets/reset.css

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
/***************/
2+
/* MEYER RESET */
3+
/***************/
4+
5+
html,
6+
body,
7+
div,
8+
span,
9+
applet,
10+
object,
11+
iframe,
12+
h1,
13+
h2,
14+
h3,
15+
h4,
16+
h5,
17+
h6,
18+
p,
19+
blockquote,
20+
pre,
21+
a,
22+
abbr,
23+
acronym,
24+
address,
25+
big,
26+
cite,
27+
code,
28+
del,
29+
dfn,
30+
em,
31+
img,
32+
ins,
33+
kbd,
34+
q,
35+
s,
36+
samp,
37+
small,
38+
strike,
39+
strong,
40+
sub,
41+
sup,
42+
tt,
43+
var,
44+
b,
45+
u,
46+
i,
47+
center,
48+
dl,
49+
dt,
50+
dd,
51+
ol,
52+
ul,
53+
li,
54+
fieldset,
55+
form,
56+
label,
57+
legend,
58+
table,
59+
caption,
60+
tbody,
61+
tfoot,
62+
thead,
63+
tr,
64+
th,
65+
td,
66+
article,
67+
aside,
68+
canvas,
69+
details,
70+
embed,
71+
figure,
72+
figcaption,
73+
footer,
74+
header,
75+
hgroup,
76+
menu,
77+
nav,
78+
output,
79+
ruby,
80+
section,
81+
summary,
82+
time,
83+
mark,
84+
audio,
85+
video {
86+
margin: 0;
87+
padding: 0;
88+
border: 0;
89+
font: inherit;
90+
font-size: 100%;
91+
vertical-align: baseline;
92+
}
93+
94+
// HTML5 display-role reset for older browsers
95+
article,
96+
aside,
97+
details,
98+
figcaption,
99+
figure,
100+
footer,
101+
header,
102+
hgroup,
103+
menu,
104+
nav,
105+
section {
106+
display: block;
107+
}
108+
109+
body {
110+
line-height: 1;
111+
}
112+
113+
ol,
114+
ul {
115+
list-style: none;
116+
}
117+
118+
blockquote,
119+
q {
120+
quotes: none;
121+
}
122+
123+
blockquote:before,
124+
blockquote:after,
125+
q:before,
126+
q:after {
127+
content: '';
128+
content: none;
129+
}
130+
131+
table {
132+
border-collapse: collapse;
133+
border-spacing: 0;
134+
}
135+
136+
// Apply a natural box layout model to all elements
137+
// from: http://www.paulirish.com/2012/box-sizing-border-box-ftw/
138+
*,
139+
*:before,
140+
*:after {
141+
-moz-box-sizing: border-box;
142+
-webkit-box-sizing: border-box;
143+
box-sizing: border-box;
144+
}

0 commit comments

Comments
 (0)