13 lines
171 B
CSS
13 lines
171 B
CSS
.scope1 {
|
|
color: blue;
|
|
border-color: black;
|
|
}
|
|
.scope1 .scope2 {
|
|
color: blue;
|
|
}
|
|
.scope1 .scope2 .scope3 {
|
|
color: red;
|
|
border-color: black;
|
|
background-color: white;
|
|
}
|