mirror of
https://github.com/jambonz/next-static-site.git
synced 2025-12-19 04:47:44 +00:00
* Adding latest news and banners * Adding first draft of cypress specs and github actions workflow * Adding sticky position for top banner * Tweak styles for new latest news section * Tweak styles for text__layout innerHTML * Fix Cypress homepage test spec * Fix mobile navi z-index with sticky top banner * Fix sticky banner z-index bug with mobile navi * Refactor markdown tools to support pages beyond developer docs * Adjust TADHACK text max-widths for small mobile * initial changes for open source copy * more copy * more copy * updated open source structure * minor * typo * more copy * Adjust styles for Open Source markdown small text * Update readme and remove floats from docs webhooks markdown * Add readme notes on Cypress and flesh out navi spec tests * Fix main navi highlight when on sub-sections of markdown pages Co-authored-by: Dave Horton <daveh@beachdognet.com>
81 lines
2.1 KiB
SCSS
81 lines
2.1 KiB
SCSS
/******************************************************************************
|
|
* CSS Reset
|
|
* Add / Remove / Tweak this for your project.
|
|
* The philosophy behind the CSS Reset is personal application customization.
|
|
*
|
|
* This approach is preferred over options like Normalize, which make way
|
|
* too many assumptions and apply styles on top of the basic property resets.
|
|
*
|
|
* Though this CSS Reset is very basic and has not been updated in quite some
|
|
* time, since 2011, it serves as a great starting point.
|
|
*
|
|
* Know what you are resetting and have piloted conrtol of your web app ;-)
|
|
*
|
|
*
|
|
* http://meyerweb.com/eric/tools/css/reset/
|
|
* v2.0 | 20110126
|
|
* License: none (public domain)
|
|
*******************************************************************************/
|
|
/**
|
|
* Intentionally removed elements
|
|
* sup
|
|
*/
|
|
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, 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: inherit;
|
|
font-size: 100%;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
html {
|
|
line-height: 1;
|
|
box-sizing: border-box;
|
|
}
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
ol, ul {
|
|
list-style: none;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
caption, th, td {
|
|
text-align: left;
|
|
font-weight: normal;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
q, blockquote {
|
|
quotes: none;
|
|
}
|
|
|
|
q:before, q:after, blockquote:before, blockquote:after {
|
|
content: "";
|
|
content: none;
|
|
}
|
|
|
|
a img {
|
|
border: none;
|
|
}
|
|
|
|
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
|
|
display: block;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
} |