10 lines
118 B
CSS
10 lines
118 B
CSS
|
|
#saveStatus {
|
||
|
|
opacity: 0;
|
||
|
|
transition: opacity 0.5s;
|
||
|
|
color: green;
|
||
|
|
}
|
||
|
|
|
||
|
|
#saveStatus.show {
|
||
|
|
opacity: 1;
|
||
|
|
}
|