This commit is contained in:
Waylon Walker 2022-10-25 07:47:13 -05:00
commit 7b7dd9d811
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
11 changed files with 352 additions and 0 deletions

56
textual_tutorial/tui.css Normal file
View file

@ -0,0 +1,56 @@
Stopwatch {
layout: horizontal;
background: $boost;
height: 5;
padding: 1;
margin: 1;
}
Stopwatch.active {
background: red;
background: $background-lighten-3;
}
TimeDisplay {
content-align: center middle;
text-opacity: 60%;
height: 3;
}
Button {
width: 16;
}
#start {
dock: left;
}
#stop {
dock: left;
display: none;
}
#reset {
dock: right;
}
.started {
text-style: bold;
background: $success;
color: $text;
}
.started TimeDisplay {
text-opacity: 100%;
}
.started #start {
display: none
}
.started #stop {
display: block
}
.started #reset {
visibility: hidden
}