diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2017-11-08 19:37:00 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2017-11-08 19:37:00 +0000 |
commit | 373f5e27dcb5b78d5d5af54739b17466f4dcf1ab (patch) | |
tree | fd768905cccab638e1e73d633c1aa97937fc75cb /style | |
parent | 6db308137dd2c35568869f11ee14fa2c58067042 (diff) | |
download | Post-SMTP-373f5e27dcb5b78d5d5af54739b17466f4dcf1ab.zip |
* Fix: Self sign certificate
* Add: guides section
git-svn-id: https://plugins.svn.wordpress.org/post-smtp/trunk@1760970 b8457f37-d9ea-0310-8a92-e5e31aec5664
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 |