diff options
Diffstat (limited to 'style')
-rw-r--r-- | style/postman.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/style/postman.css b/style/postman.css index 1019387..734f783 100644 --- a/style/postman.css +++ b/style/postman.css @@ -81,4 +81,40 @@ p#back_to_main_menu { .welcome-panel-column welcome-panel-last { padding-bottom: 10px; +} + +.new-item { + display: inline-block; + padding: 5px; + border-radius: 20px; + background-color: red; + margin-right: 10px; +} + +.new-item span { + font-weight: bold; + color: white; + animation: pulse 2s linear 0s infinite; +} + +@keyframes pulse { + 0% { + opacity: 0; + } + + 25% { + opacity: 0.25; + } + + 50% { + opacity: 0.5; + } + + 75% { + opacity: 0.75; + } + + 100% { + opacity: 1; + } }
\ No newline at end of file |