2020-07-30 10:08:21 +02:00
|
|
|
.buttons {
|
|
|
|
display: flex;
|
2020-07-31 05:11:43 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
2020-07-30 10:08:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
font-size: 12px;
|
|
|
|
background: #f5f5f5;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-right: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-07-31 05:11:43 +02:00
|
|
|
.button:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-30 10:08:21 +02:00
|
|
|
.button:hover {
|
|
|
|
background: #eaeaea;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|