mirror of
https://github.com/pinry/pinry.git
synced 2025-11-17 18:30:39 +01:00
24 lines
445 B
CSS
24 lines
445 B
CSS
#messages {
|
|
list-style-type: none;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 60px;
|
|
z-index: 200;
|
|
}
|
|
|
|
#messages li {
|
|
border: 1px solid #ccc;
|
|
font-size: 16px;
|
|
margin: 5px 0;
|
|
padding: 18px 28px;
|
|
}
|
|
|
|
#messages li:hover {
|
|
cursor: pointer;
|
|
-webkit-transform: scale(1.1);
|
|
-moz-transform: scale(1.1);
|
|
-ms-transform: scale(1.1);
|
|
-o-transform: scale(1.1);
|
|
transform: scale(1.1);
|
|
}
|