Is it possible to create a CSS specifying it should inherit from another one? For example I want single-match-header to inhert from normal-text
.normal-text {
font-family: Arial;
font-size: 12px;
}
.single-match-header {
background-color: #666666;
color: white;
font-weight: bold;
font-size: 12px;
font-family: Arial;
}