Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google gmail notifier css

Tags:

css

gmail

When sending message or discard an email, at the top there will be a yellow box with message "Your message has been discarded. Undo discard". I want exactly the same Google css style. Any example and advise is welcome. Thank you

Please refer image below with the links

Print screen

like image 933
user1944535 Avatar asked Aug 28 '26 18:08

user1944535


2 Answers

Another example (straight from gmail css)

http://jsfiddle.net/VVbZZ/1/

css:

.notification-container {
    left: 0;
    top: 0;
    margin: 0;
    font-family: arial, sans-serif;
    font-weight: bold;
    visibility: hidden;
    z-index: 8;
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
}
.notification-message {
    position: relative;
    display: inline-block;
    visibility: visible;
    font-size: 80%;
    padding: 6px 10px;
    background-color: #f9edbe;
    border: 1px solid #f0c36d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

html:

<div class="notification-container">
    <div class="notification-message"> 
       <span>Loading... <a href="damn.com">Click to learn more</a></span>
    </div>
</div>

result:

enter image description here

like image 112
Jossef Harush Kadouri Avatar answered Aug 30 '26 08:08

Jossef Harush Kadouri


Use the below css:

.verticalBox {
  margin: 0 0;
  position: relative;
  top: 8px;
  z-index: 990;
  border-color: #f0c36d;
  background-color: #f9edbe;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  background: #f9edbe;
  border-color: #f9edbe;
  color: #222;
  padding: 0 7px;
  font-size: 80%;
  font-weight: bold; 
  text-align: center;
}

And use the following HTML:

<div class="verticalBox">This is testing</div>

This is similar to gmail message.

result:

enter image description here

JSFiddle

like image 33
Code Lღver Avatar answered Aug 30 '26 09:08

Code Lღver



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!