Простая CSS библиотека элементов для личных проектов
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
550 B

2 years ago
// Add personal reset font-size. 1rem = 10px.
html {
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
box-sizing: border-box;
}
a {
text-decoration: unset;
color: unset;
}
/* Remove list styles (bullets/numbers) */
ol, ul, menu {
list-style: none;
}
/* For images to not be able to exceed their container */
img {
max-width: 100%;
}
/* removes spacing between cells in tables */
table {
border-collapse: collapse;
}
/* reset default text opacity of input placeholder */
::placeholder {
color: unset;
}