_reset.scss 1.33 KB
Newer Older
1 2 3
// studio - utilities - reset
// ====================

4
// not ready for this yet, but this should be done as things get cleaner
5 6 7
// * {
// 	@include box-sizing(border-box);
// }
8

Brian Talbot committed
9 10 11 12 13
// better text rendering/kerning through SVG
* {
	text-rendering: optimizeLegibility;
}

14 15 16 17 18 19 20 21 22
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,
Brian Talbot committed
23
article, aside, canvas, details, figcaption, figure,
24
footer, header, menu, nav, section, summary,
25 26 27 28 29 30 31 32 33
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
34

35 36 37 38
html,body {
  height: 100%;
}

Brian Talbot committed
39
article, aside, details, figcaption, figure,
40
footer, header, menu, nav, section {
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

ins {
	text-decoration: none;
}
61

62 63 64 65 66 67 68
del {
	text-decoration: line-through;
}

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

71 72 73
abbr[title] {
	border-bottom: none;
	text-decoration: none;
74
	cursor: help;
75
}