forked from AuroraMiddleware/gtk
f4ffd261db
This shows not all, but the interesting/less predictable styles, and the ones that correspond to the :shadow-types that were here before.
27 lines
326 B
CSS
27 lines
326 B
CSS
.small-button {
|
|
padding: 0;
|
|
outline-width: 0;
|
|
}
|
|
|
|
.border-inset {
|
|
border-style: inset;
|
|
}
|
|
|
|
.border-outset {
|
|
border-style: outset;
|
|
}
|
|
|
|
.border-groove {
|
|
border-style: groove;
|
|
}
|
|
|
|
.border-ridge {
|
|
border-style: ridge;
|
|
}
|
|
|
|
/* These effects use 2 lines, so show them */
|
|
.border-groove,
|
|
.border-ridge {
|
|
border-width: 2px;
|
|
}
|