44 lines
592 B
CSS
44 lines
592 B
CSS
.Favorite {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
background-color: #ffff8f;
|
|
|
|
position: absolute;
|
|
width: 15%;
|
|
height: 15%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Favorite:hover {
|
|
overflow: visible;
|
|
}
|
|
|
|
.Bookmark {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
background-color: #ff998f;
|
|
|
|
position: absolute;
|
|
width: 15%;
|
|
height: 15%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Bookmark:hover {
|
|
overflow: visible;
|
|
}
|
|
|
|
.Notification {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
background-color: #8fffaf;
|
|
|
|
position: absolute;
|
|
width: 15%;
|
|
height: 15%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Notification:hover {
|
|
overflow: visible;
|
|
}
|