Files
agroexpert/frontend/src/global.css
argoexpert press 8ee9604061 reverse right column
2025-06-28 21:59:01 +03:00

98 lines
1.4 KiB
CSS

:root {
--primary: #f18917;
--secondary: #006842;
--black: #000;
--white: #fff;
--gray: #cfcfcf;
--adv-gray: #2f2f2f;
--placeholder-gray: #3a3a3a;
--bg: #f7f8f3;
--second-family: "Unbounded", sans-serif;
}
*, *::before, *::after {
box-sizing: border-box;
}
html {
font-size: 10px;
}
a {
color: inherit;
}
body {
font-family: 'Raleway', sans-serif;
font-variant-numeric: lining-nums;
background: var(--bg);
font-size: 1.3rem;
line-height: 150%;
color: var(--black);
-webkit-text-size-adjust: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
a {
text-decoration: none;
outline: none;
color: var(--black);
}
li {
list-style: none;
}
button {
border: 0;
padding: 0;
background: none;
cursor: pointer;
}
.link {
transition: 0.3s;
}
.link:hover {
color: var(--primary);
}
.link-icon-after::after {
content: '';
background: url(/images/link_after.svg);
width: 1rem;
height: 1rem;
display: inline-block;
margin-left: 0.4rem;
position: relative;
top: 0.1rem;
}
.wpcf7-spinner {
display: none !important;
}
.wp-block-embed iframe {
width: 100%;
}
.advert_download{
text-align: center;
}
.btn_download{
border: 2px solid black;
}
@media (max-width: 768px) {
body, html {
width: 100%;
max-width: 100%;
}
}