aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/imports/_reset.css
diff options
context:
space:
mode:
authorDarin Dimitroff <d@thecrazyones.agency>2017-01-01 16:39:14 +0200
committerDarin Dimitroff <d@thecrazyones.agency>2017-01-01 16:39:14 +0200
commitbd9a50e9c824e89d8a91fd54c8bc838cdfa796f6 (patch)
tree06254243ccfc713ab0801e748b16dade68ff73ca /src/css/imports/_reset.css
parentdedfd8a8098db999f81a55a845e0e4d041f9d7a8 (diff)
Initial commit
Diffstat (limited to 'src/css/imports/_reset.css')
-rwxr-xr-xsrc/css/imports/_reset.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/css/imports/_reset.css b/src/css/imports/_reset.css
new file mode 100755
index 0000000..d0a1f31
--- /dev/null
+++ b/src/css/imports/_reset.css
@@ -0,0 +1,67 @@
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+
+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;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+input, textarea {
+ font-size: 1rem;
+ border: none;
+ font-family: inherit;
+ border: 0;
+ margin: 0;
+}
+
+button {
+ font-family: inherit;
+ border: 0;
+ margin: 0;
+ cursor: pointer;
+}
+
+a {
+ color: inherit;
+}