fichier reset.css au lieu de sass
continuous-integration/drone/push Build is passing Details

This commit is contained in:
pikselkraft 2020-05-26 12:47:02 +02:00
parent 66bff55af9
commit 6914c52647
2 changed files with 14 additions and 11 deletions

View File

@ -1,4 +1,5 @@
@import "./variables"
@import "./reset"
@import "./html"
@import "./a11y"
@import "./content"

View File

@ -1,9 +1,11 @@
/* Reset CSS */
/*********
Reset CSS
*********/
/* Box sizing rules */
*,
*::before,
*::after {
box-sizing: border-box
box-sizing: border-box;
}
/* Remove default margin */
@ -22,18 +24,18 @@ figcaption,
blockquote,
dl,
dd {
margin: 0
margin: 0;
}
/* Make images easier to work with */
img {
max-width: 100%
display: block
max-width: 100%;
display: block;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
margin-top: 1em
margin-top: 1em;
}
/* Inherit fonts for inputs and buttons */
@ -41,15 +43,15 @@ input,
button,
textarea,
select {
font: inherit
font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important
animation-iteration-count: 1 !important
transition-duration: 0.01ms !important
scroll-behavior: auto !important
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}