It seems like your CSS is divided among multiple classes rather than being consolidated into one. For example, instead of:
p{
font-size: 14px;
}
You have something like this:
.first {
font-size: 14px;
}
.second {
font-size: 14px;
}
.third {
font-size: 14px;
}
To handle this, you can make use of features like VS code's replace all function to streamline the process
https://i.sstatic.net/1pNAD.png
If you're feeling lazy, you could also consider adding !important to your CSS properties, although this is generally discouraged for various reasons.
.first {
font-size: 14px;
}
.second {
font-size: 14px;
}
.third {
font-size: 14px;
}
// override all
p {
font-size: 16px !important;
}
However, relying on !important declarations is not a recommended practice due to its limitations.
In cases where specificity plays a crucial role, simply adjusting styles won't suffice as demonstrated below:
//more specific style
.some-container .some-div {
font-size: 14px;
}
// fails to override
p {
font-size: 16px;
}