en.javascript.info/2-ui/1-document/14-styles-and-classes/2-create-notification/source.view/index.css
2015-03-09 18:51:07 +03:00

14 lines
No EOL
218 B
CSS
Executable file

.notification {
position: fixed;
z-index: 1000;
padding: 5px;
border: 1px solid black;
font: normal 20px Georgia;
background: white;
text-align: center;
}
.welcome {
background: red;
color: yellow;
}