Files
oav/dotclear._no/themes/berlin/scss/init/_rebase.scss
2023-03-20 12:18:38 +01:00

186 lines
3.5 KiB
SCSS

/** =================================================================================
Base rules and html5 compatibility by Dotclear Team,
//* most based on some Koz's habits and:
//* - Comprehensive Base Stylesheet by fvsch - http://fvsch.com/code/base-stylesheet/
//* - Normalize.css v2.1.3 | MIT License | git.io/normalize
//* - Knacss | WTFYW | by Raphael Goetter
================================================================================== */
/* largeur des paddings et border compris dans "width" */
*,
*:after,
*:before {
-moz-box-sizing: border-box; // Firefox, other Gecko */
box-sizing: border-box;
}
html {
font-size: 100.01%; // bug arrondi sur vieux navigateurs
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
}
a { background: transparent; }
a:focus { outline: thin dotted; }
a:active, a:hover { outline: none; }
a img { border: none; }
q, cite {
font-style: italic;
}
q:before, q:after {
content: "";
}
sup, sub {
font-size: .75em;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup { top: -0.5em; }
sub { bottom: -0.25em; }
abbr[title] {
border-bottom: 1px dotted;
cursor: help;
}
b, strong {
font-weight: bold;
font-size: 0.9375em;
}
small {
font-size: 80%;
}
dfn {
font-style: italic;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
mark {
background: #ff0;
color: #000;
}
code, kbd, pre, samp {
font-family: monospace, serif;
font-size: 1em;
}
pre {
white-space: pre-wrap;
}
fieldset {
margin: 0;
padding: 0;
border: none;
}
input, button, select {
vertical-align: middle;
}
button, input, select, textarea {
font-family: inherit;
font-size: 100%;
margin: 0;
}
button, input {
line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
padding: 0;
border: none;
}
input[type="search"] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
vertical-align: top;
}
button:-moz-focusring,
textarea:-moz-focusring {
outline: 2px solid #69b3fb;
}
table {
border-collapse: collapse;
margin-bottom: 1.5em;
}
td, th {
padding: 1px;
vertical-align: top;
text-align: left;
}
td:first-child, th:first-child {
empty-cells: hide;
}
/* scripts */
body > script {display: none !important;}
/* HTML5 for old browsers */
article, aside, details, figcaption, figure, footer,
header, hgroup, main, nav, section, summary {
display: block;
}
audio, canvas, video {
display: inline-block;
}
audio:not([controls]) {
display: none;
height: 0;
}
figure {
margin: 0;
}
[hidden], template {
display: none;
}
svg:not(:root) {
overflow: hidden;
}
/* Headings reset */
h1, h2, h3, h4, h5, h6 {
font-size: 1em;
font-weight: normal;
margin: 0;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visually-hidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}