michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #alertBox[animate] { michael@0: animation-duration: 4s; michael@0: animation-fill-mode: both; michael@0: animation-name: alert-animation; michael@0: } michael@0: michael@0: #alertBox[animate]:hover { michael@0: animation-play-state: paused; michael@0: } michael@0: michael@0: .alertText { michael@0: white-space: pre-wrap; michael@0: } michael@0: michael@0: @keyframes alert-animation { michael@0: to { michael@0: visibility: hidden; michael@0: } michael@0: }