Reference doc for text-opacity

This commit is contained in:
Darren Burns
2022-08-31 14:14:22 +01:00
parent 210214260d
commit 56bc83c30e
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#zero-opacity {
text-opacity: 0%;
}
#quarter-opacity {
text-opacity: 25%;
}
#half-opacity {
text-opacity: 50%;
}
#three-quarter-opacity {
text-opacity: 75%;
}
#full-opacity {
text-opacity: 100%;
}
Static {
height: 1fr;
text-align: center;
text-style: bold;
}

View File

@@ -0,0 +1,14 @@
from textual.app import App
from textual.widgets import Static
class TextOpacityApp(App):
def compose(self):
yield Static("text-opacity: 0%", id="zero-opacity")
yield Static("text-opacity: 25%", id="quarter-opacity")
yield Static("text-opacity: 50%", id="half-opacity")
yield Static("text-opacity: 75%", id="three-quarter-opacity")
yield Static("text-opacity: 100%", id="full-opacity")
app = TextOpacityApp(css_path="text_opacity.css")

View File