Pengguna:Mohamadhzanhari/style.css

Catatan: Setelah menyimpan, Anda harus memintas tembolok (cache) peramban Anda untuk melihat perubahannya. Google Chrome, Firefox, Microsoft Edge dan Safari: Tahan tombol Shift dan klik Muat ulang (Reload) di tombol bilah alat. Untuk detail dan instruksi tentang peramban lain, lihat halaman menghapus singgahan (Inggris).

.slide-animation {
	background-color:rgb(90,170,117);
	animation-name:slide-animate;
	animation-duration:.2s;
	animation-fill-mode: forwards;
}

@keyframes slide-animate {
	from{background-color:rgb(90,170,117);}
	to{background-color:rgb(255,255,255);}
}