mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
36 lines
491 B
CSS
36 lines
491 B
CSS
Screen {
|
|
overflow: auto;
|
|
}
|
|
|
|
#calculator {
|
|
layout: table;
|
|
table-size: 4;
|
|
table-gutter: 1 2;
|
|
table-columns: 1fr;
|
|
table-rows: 2fr 1fr 1fr 1fr 1fr 1fr;
|
|
margin: 1 2;
|
|
min-height:25;
|
|
min-width: 50;
|
|
}
|
|
|
|
Button {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#numbers {
|
|
column-span: 4;
|
|
content-align: right middle;
|
|
padding: 0 1;
|
|
height: 100%;
|
|
background: $panel-darken-2;
|
|
}
|
|
|
|
.special {
|
|
tint: $text-panel 20%;
|
|
}
|
|
|
|
.zero {
|
|
column-span: 2;
|
|
}
|