xxxxxxxxxx
:root {
--theme-color: green;
}
div {
color: var(--theme-color);
}
Global css style
xxxxxxxxxx
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* choose your here and write here */
--dark: #2e424d;
--light: #ffffff;
}
body {
background-color: var(--dark);
color: var(--light);
}
html {
font-size: 20px;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: var(--light);
}
.max-width {
max-width: 1400px;
}
/* for responsive */
@media only screen and (max-width: 1370px) {
html {
font-size: 1.5rem;
}
}
@media only screen and (max-width: 992px) {
html {
font-size: 1.3rem;
}
}
@media only screen and (max-width: 768px) {
html {
font-size: 1.1rem;
}
}