mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:17:16 -04:00
30 lines
581 B
CSS
30 lines
581 B
CSS
a {
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
transition: transform 1s;
|
|
}
|
|
|
|
b {
|
|
/* autoprefixer: off */
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
transition: transform 1s;
|
|
}
|
|
|
|
@support (transition: 1s) {
|
|
/* autoprefixer: off */
|
|
|
|
:fullscreen {
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
transition: transform 1s;
|
|
}
|
|
|
|
::placeholder {
|
|
/*autoprefixer: on*/
|
|
-webkit-border-radius: 4px;
|
|
border-radius: 4px;
|
|
transition: transform 1s;
|
|
}
|
|
}
|