added most used resets + comments correction #1
+66
-43
@@ -1,49 +1,32 @@
|
|||||||
// ===
|
|
||||||
// Common: Match typography size
|
|
||||||
// ===
|
|
||||||
html {
|
html {
|
||||||
font-size: 16px;
|
/* Common: Match typography size */
|
||||||
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===
|
|
||||||
// Common: Removes the default margin from body
|
|
||||||
// ===
|
|
||||||
body {
|
body {
|
||||||
|
|
|||||||
|
/* Common: Removes the default margin from body */
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
/* Common: Sets in common the way of rendering the text */
|
||||||
|
|
||||||
// ===
|
|
||||||
// Common: Sets in common the way of rendering the text
|
|
||||||
// ===
|
|
||||||
body {
|
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
}
|
/* Common: Standardizes typography */
|
||||||
|
|
||||||
// ===
|
|
||||||
// Common: Standardizes typography
|
|
||||||
// ===
|
|
||||||
body {
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
||||||
|
/* Common: Standardizes line height. */
|
||||||
|
line-height: 125%;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===
|
|
||||||
// Common: Standardizes line height.
|
|
||||||
// ===
|
|
||||||
body {
|
|
||||||
line-height: 1.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ===
|
|
||||||
// Hyperlink: Remove the bottom line.
|
|
||||||
// ===
|
|
||||||
a {
|
a {
|
||||||
|
/* Hyperlink: Remove the bottom line. */
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
/* Hyperlink: Remove default color */
|
||||||
|
color: unset;
|
||||||
|
/* iOS: remove the color of the highlight that appears over a link while it's being tapped */
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===
|
/* Pictures: Gives 100% width to fit containers */
|
||||||
// Pictures: Gives 100% width to fit containers
|
img,
|
||||||
// ===
|
picture {
|
||||||
img, picture {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,22 +36,30 @@ table {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
td,
|
||||||
|
th {
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table, th, td {
|
table,
|
||||||
|
th,
|
||||||
|
td {
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===
|
/* Firefox: remove inner focus ring */
|
||||||
// Firefox: not display the ugly dotted focus outlines on links
|
button::-moz-focus-inner,
|
||||||
// ===
|
input[type="button"]::-moz-focus-inner,
|
||||||
button::-moz-focus-inner {
|
input[type="submit"]::-moz-focus-inner,
|
||||||
|
input[type="reset"]::-moz-focus-inner,
|
||||||
|
input[type="color"]::-moz-focus-inner {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:focus, button:focus, input:focus {
|
a:focus,
|
||||||
|
textarea:focus,
|
||||||
|
button:focus,
|
||||||
|
input:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,9 +71,41 @@ input[type='checkbox'] {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===
|
/* iOS: remove zoom double tap */
|
||||||
// iOS: remove zoom double tap
|
|
||||||
// ===
|
|
||||||
button {
|
button {
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* iOS && Firefox: remove default input appearince */
|
||||||
|
/* Remove or add any input type */
|
||||||
|
input[type="button"],
|
||||||
|
input[type="checkbox"],
|
||||||
|
input[type="email"],
|
||||||
|
input[type="file"],
|
||||||
|
input[type="number"],
|
||||||
|
input[type="reset"],
|
||||||
|
input[type="search"],
|
||||||
|
input[type="submit"],
|
||||||
|
input[type="tel"],
|
||||||
|
input[type="text"],
|
||||||
|
input[type="url"],
|
||||||
|
textarea {
|
||||||
|
-moz-appearance: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* iOS: remove the "cancel button" at the edge of an <input> of type="search" */
|
||||||
|
Y si ponemos input::moz-focus... en lugar de ir type por type? Y si ponemos input::moz-focus... en lugar de ir type por type?
|
|||||||
|
input[type="search"]::-webkit-search-cancel-button {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove resize option for textarea */
|
||||||
|
textarea {
|
||||||
|
resize: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Firefox: remove default input:invalid appearence */
|
||||||
|
input:invalid {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user
propongo dejarlo con 16px para tener el control