14 lines
150 B
CSS
14 lines
150 B
CSS
#saveStatus {
|
|
opacity: 0;
|
|
transition: opacity 0.5s;
|
|
color: green;
|
|
}
|
|
|
|
#saveStatus.show {
|
|
opacity: 1;
|
|
}
|
|
|
|
body {
|
|
min-width: 350px;
|
|
}
|