mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
47 lines
603 B
CSS
47 lines
603 B
CSS
/* CSS file for basic.py */
|
|
|
|
$primary: #20639b;
|
|
|
|
App > View {
|
|
docks: side=left/1;
|
|
text: on $primary;
|
|
}
|
|
|
|
Widget:hover {
|
|
outline: heavy;
|
|
text: bold !important;
|
|
}
|
|
|
|
#sidebar {
|
|
text: #09312e on #3caea3;
|
|
dock: side;
|
|
width: 30;
|
|
offset-x: -100%;
|
|
transition: offset 500ms in_out_cubic;
|
|
border-right: outer #09312e;
|
|
}
|
|
|
|
#sidebar.-active {
|
|
offset-x: 0;
|
|
}
|
|
|
|
#header {
|
|
text: white on #173f5f;
|
|
height: 3;
|
|
border: hkey;
|
|
}
|
|
|
|
#header.-visible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
#content {
|
|
text: white on $primary;
|
|
border-bottom: hkey #0f2b41;
|
|
}
|
|
|
|
#footer {
|
|
text: #3a3009 on #f6d55c;
|
|
height: 3;
|
|
}
|