mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
33 lines
393 B
CSS
33 lines
393 B
CSS
#zero-opacity {
|
|
opacity: 0%;
|
|
}
|
|
|
|
#quarter-opacity {
|
|
opacity: 25%;
|
|
}
|
|
|
|
#half-opacity {
|
|
opacity: 50%;
|
|
}
|
|
|
|
#three-quarter-opacity {
|
|
opacity: 75%;
|
|
}
|
|
|
|
#full-opacity {
|
|
opacity: 100%;
|
|
}
|
|
|
|
Screen {
|
|
background: black;
|
|
}
|
|
|
|
Label {
|
|
width: 100%;
|
|
height: 1fr;
|
|
border: outer dodgerblue;
|
|
background: lightseagreen;
|
|
content-align: center middle;
|
|
text-style: bold;
|
|
}
|