Initial commit
This commit is contained in:
75
frontend/src/global.css
Normal file
75
frontend/src/global.css
Normal file
@@ -0,0 +1,75 @@
|
||||
:root {
|
||||
--primary: #f18917;
|
||||
--secondary: #006842;
|
||||
--black: #000;
|
||||
--white: #fff;
|
||||
--gray: #cfcfcf;
|
||||
--adv-gray: #2f2f2f;
|
||||
--placeholder-gray: #3a3a3a;
|
||||
--bg: #f7f8f3;
|
||||
}
|
||||
|
||||
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%;
|
||||
}
|
||||
Reference in New Issue
Block a user