gtk2/testsuite/reftests/box-shadow-spec-inset.css
Benjamin Otte 0a440a804f reftests: Fix CSS for various tests
* :nth-child(first) => :first-child
* :nth-child(last) => :last-child
* Add semicolons at end of declarations
* Remove spaces between color functions (shade, alpha, ...) and args
2019-04-12 19:34:29 +02:00

61 lines
781 B
CSS

@import "reset-to-defaults.css";
.row1, .row2, .row3 {
/*border:5px solid blue;*/
border-width: 5px;
border-style: solid;
border-color: blue;
background-color:orange;
}
.column1 {
/* border-radius: 20px; */
}
.column2 {
border-radius: 0;
}
.row2 {
box-shadow:
rgba(0,0,0,1)
15px 15px
inset;
}
.row3 {
box-shadow:
rgba(0,0,0,1)
15px 15px 0
10px /*spread*/
inset;
}
.reference-border {
border-width: 5px;
border-style: solid;
border-color: blue;
}
.reference-background {
background-color: orange;
}
.reference-shadow {
background-color: rgba(0,0,0,1);
}
/*
.reference-padding-radius {
border-radius: 15px
}
.reference-radii1 {
border-radius: 15px 0 10px;
}
.reference-radii2 {
border-radius: 5px 0 10px;
}
*/