mirror of
https://github.com/Nezumi-2711/html-css-practice-two.git
synced 2026-09-22 13:38:40 +00:00
55 lines
782 B
SCSS
55 lines
782 B
SCSS
$background-color_1: transparent;
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font: inherit;
|
|
&:before {
|
|
box-sizing: border-box;
|
|
}
|
|
&:after {
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
picture {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
video {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
input {
|
|
background-color: $background-color_1;
|
|
outline: none;
|
|
}
|
|
select {
|
|
background-color: $background-color_1;
|
|
outline: none;
|
|
}
|
|
textarea {
|
|
background-color: $background-color_1;
|
|
outline: none;
|
|
}
|
|
button {
|
|
cursor: pointer;
|
|
background-color: $background-color_1;
|
|
outline: none;
|
|
border: 0;
|
|
}
|
|
body {
|
|
min-height: 100vh;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
}
|