Files
webdev-vacancy/src/pages/css/initial.css
T
2026-01-21 13:34:13 +02:00

110 lines
2.0 KiB
CSS

html, body, div, span, applet, object, iframe,
blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, tbody, tfoot, thead, tr, th {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
ins, a {
text-decoration: none;
}
del {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
*{
box-sizing: border-box;
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
font-size: 16px;
}
body {
margin: 0 auto;
font-family:
-apple-system, BlinkMacSystemFont, "Open Sans", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Droid Sans", "Helvetica Neue", sans-serif;
/* background: linear-gradient(85.91deg, #faf4fd -31.4%, #f0f9fd 57.96%, #f1fcfb 146.43%); */
background: #fbfafc;
font-weight: 400;
}
h1 {
font-size: 2.5rem;
font-weight: 500;
}
h2 {
font-size: 2.25rem;
font-weight: 500;
}
h3 {
font-size: 2rem;
font-weight: 500;
}
h4 {
font-size: 1.75rem;
}
h5 {
font-size: 1.5rem;
}
h6 {
font-size: 1.25rem;
}
#main{
margin: 0 auto;
max-width: 1920px;
min-width: 320px;
min-height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
background-color: #fff;
position: relative;
border: 5px solid orange;
/*letter-spacing: 0!important;*/
}
@media only screen and (max-width : 320px) {
body * {
animation: none !important;
transition: none !important;
}
}
/* @media only screen and (min-width : 0px) {}
@media only screen and (min-width : 321px) {}
@media only screen and (min-width : 760px) {}
@media only screen and (min-width : 992px) {}
@media only screen and (min-width : 1366px) {}
@media only screen and (min-width : 1367px) {} */