Play/pause flyover
This commit is contained in:
@@ -463,3 +463,62 @@
|
||||
font-size: 13px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.fly-controls {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.fly-button {
|
||||
flex: 3;
|
||||
padding: 12px;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.fly-button.play {
|
||||
background: #3498db;
|
||||
}
|
||||
|
||||
.fly-button.play:hover {
|
||||
background: #2980b9;
|
||||
}
|
||||
|
||||
.fly-button.pause {
|
||||
background: #e74c3c;
|
||||
}
|
||||
|
||||
.fly-button.pause:hover {
|
||||
background: #c0392b;
|
||||
}
|
||||
|
||||
.reset-flight-btn {
|
||||
flex: 1;
|
||||
padding: 12px;
|
||||
background: #95a5a6;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.reset-flight-btn:hover:not(:disabled) {
|
||||
background: #7f8c8d;
|
||||
}
|
||||
|
||||
.reset-flight-btn:disabled {
|
||||
background: #ecf0f1;
|
||||
color: #bdc3c7;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user