en.javascript.info/2-ui/1-document/08-styles-and-classes/2-create-notification/solution.view/index.css
Ilya Kantor 508969c13f up
2017-02-28 12:54:48 +03:00

14 lines
213 B
CSS
Executable file

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