bees-knees/static/style.css
Marty Oehme c3cfdbdc3c
feat: Indicate buttons which are not implemented
Buttons are greyed out and labelled accordingly.
2025-07-22 11:25:04 +02:00

107 lines
1.5 KiB
CSS

* {
margin: 0;
padding: 0;
}
body {
font-family: monospace;
background: #f4f4f9;
}
.hidden {
display: none;
}
.card {
border: 1px solid #ccc;
padding: 10px;
margin: auto;
margin-bottom: 40px;
width: 600px;
}
.card-title {
font-size: 24px;
margin-bottom: 5px;
}
.fab-holder {
position: fixed;
bottom: 50px;
right: 50px;
z-index: 999;
cursor: pointer;
}
.fab-icon-holder {
width: 50px;
height: 50px;
border-radius: 100%;
background: #016fb9;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.fab-icon-holder:hover {
opacity: 0.8;
}
.fab-icon-holder.disabled {
background: #333333
}
.fab-icon-holder .icon {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-style: 25px;
color: #ffffff;
}
.main-btn {
width: 60px;
height: 60px;
background: #df73ff;
}
.fab-options {
list-style-type: none;
margin: 0;
position: absolute;
bottom: 70px;
right: 0;
opacity: 0;
transition: all 0.3s ease;
transform: scale(0);
transform-origin: 85% bottom;
}
.main-btn:hover + .fab-options,
.fab-options:hover {
opacity: 1;
transform: scale(1);
}
.fab-options li {
display: flex;
justify-content: flex-end;
padding: 5px;
}
.fab-options li.hidden {
display: none;
}
.fab-label {
padding: 2px 5px;
align-self: center;
user-select: none;
white-space: nowrap;
border-radius: 3px;
font-size: 16px;
background-color: #666666;
color: #ffffff;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
margin-right: 10px;
}