summaryrefslogtreecommitdiff
path: root/style
diff options
context:
space:
mode:
authoryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2017-11-08 19:37:00 +0000
committeryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2017-11-08 19:37:00 +0000
commit54b5bf41553746d9a6a9cc3de0c61c654fda8153 (patch)
treefd768905cccab638e1e73d633c1aa97937fc75cb /style
parent6dc8161c3b9ae6039cb3ca9d98ad42b9bdb7d6ee (diff)
downloadPost-SMTP-54b5bf41553746d9a6a9cc3de0c61c654fda8153.zip
* Fix: Self sign certificate
* Add: guides section
Diffstat (limited to 'style')
-rw-r--r--style/postman.css36
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