mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
31 lines
336 B
CSS
31 lines
336 B
CSS
Stopwatch {
|
|
layout: horizontal;
|
|
background: $panel-darken-1;
|
|
height: 5;
|
|
padding: 1;
|
|
margin: 1;
|
|
}
|
|
|
|
TimeDisplay {
|
|
content-align: center middle;
|
|
text-opacity: 60%;
|
|
height: 3;
|
|
}
|
|
|
|
Button {
|
|
width: 16;
|
|
}
|
|
|
|
#start {
|
|
dock: left;
|
|
}
|
|
|
|
#stop {
|
|
dock: left;
|
|
display: none;
|
|
}
|
|
|
|
#reset {
|
|
dock: right;
|
|
}
|