Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: static/scss/base/_reset.scss

Issue 29474565: Issue 5350 - Setup Help Center Boilerplate (Closed)
Patch Set: Created June 26, 2017, 10:52 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: static/scss/base/_reset.scss
===================================================================
new file mode 100644
--- /dev/null
+++ b/static/scss/base/_reset.scss
@@ -0,0 +1,42 @@
+html, body, div, span, iframe,
juliandoucette 2017/06/26 12:37:34 Is there a reason why we are not using website-def
ire 2017/06/27 14:18:38 I've removed most of the resets here. As we discus
+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,
+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, section, summary,
+time, mark, audio, video
+{
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font: inherit;
+ font-size: 100%;
+ vertical-align: baseline;
+}
+
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section
+{
+ display: block;
+}
+
+table
+{
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+html
+{
+ box-sizing: border-box;
+}
+
+*, *:before, *:after
+{
+ box-sizing: inherit;
+}

Powered by Google App Engine
This is Rietveld