mirror of
https://github.com/azaion/ui.git
synced 2026-04-22 08:16:35 +00:00
57 lines
794 B
CSS
57 lines
794 B
CSS
.input-group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.video-slider {
|
|
width: 100%;
|
|
margin: 12px 20px;
|
|
}
|
|
|
|
.buttons-group {
|
|
display: flex;
|
|
justify-content: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 10px;
|
|
background: #f5f5f5;
|
|
border-radius: 4px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.control-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
margin: 0 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.play-btn {
|
|
background: #8aff8a;
|
|
}
|
|
|
|
.pause-btn {
|
|
background: #ff8a8a;
|
|
}
|
|
|
|
.arrow-btn {
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
.stop-btn {
|
|
background: #e8a1a5;
|
|
}
|
|
|
|
.save-btn {
|
|
background: #8ad4ff;
|
|
}
|
|
|
|
.delete-btn {
|
|
background: #ffb38a;
|
|
} |