mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
16 lines
278 B
CSS
16 lines
278 B
CSS
|
#delay {
|
||
|
font-size: 14px;
|
||
|
transition-property: font-size;
|
||
|
transition-duration: 4s;
|
||
|
transition-delay: 2s;
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
transition: width 2s, height 2s, background-color 2s, transform 2s;
|
||
|
}
|
||
|
|
||
|
.time {
|
||
|
transition-duration: 4s;
|
||
|
transition-duration: 4000ms;
|
||
|
}
|