forked from saurabh/orbit4-5
66 lines
1.3 KiB
CSS
66 lines
1.3 KiB
CSS
|
@charset "utf-8";
|
||
|
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,400italic);
|
||
|
body {
|
||
|
font-family: "Ubuntu", sans-serif;
|
||
|
font-size: 100%;
|
||
|
padding: 8rem 0 0 0;
|
||
|
background: url(/assets/google-message-background.jpg) center center fixed;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
.message-wrap {
|
||
|
width: 80%;
|
||
|
max-width: 366px;
|
||
|
margin: auto;
|
||
|
padding: 2rem;
|
||
|
text-align: center;
|
||
|
border: 2px solid rgba(255, 255, 255, .1);
|
||
|
border-radius: 4px;
|
||
|
background: rgba(255, 255, 255, .1);
|
||
|
}
|
||
|
.message-image-wrap {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
width: 100px;
|
||
|
}
|
||
|
.message-image {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
margin: 3rem 0 1.875rem 0;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.message-body .message-icon {
|
||
|
font-size: 1.2rem;
|
||
|
line-height: 50px;
|
||
|
position: absolute;
|
||
|
right: -1.625rem;
|
||
|
bottom: 1rem;
|
||
|
display: block;
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
color: #fff;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.message-heading {
|
||
|
font-size: 1.75rem;
|
||
|
font-weight: normal;
|
||
|
margin-bottom: .5rem;
|
||
|
text-transform: uppercase;
|
||
|
color: #fff;
|
||
|
}
|
||
|
.message-paragraph {
|
||
|
font-size: .9rem;
|
||
|
font-style: italic;
|
||
|
margin-bottom: 1rem;
|
||
|
color: rgba(255, 255, 255, .8);
|
||
|
}
|
||
|
.success-skin {
|
||
|
background: #37be1c;
|
||
|
}
|
||
|
.fail-skin {
|
||
|
background: #cc1c1c;
|
||
|
}
|
||
|
.info-skin {
|
||
|
background: #1cadcc;
|
||
|
}
|
||
|
|