diff options
Diffstat (limited to 'src/gui/style.css')
-rw-r--r-- | src/gui/style.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/gui/style.css b/src/gui/style.css new file mode 100644 index 0000000..b0853ab --- /dev/null +++ b/src/gui/style.css @@ -0,0 +1,46 @@ + +.boxed-widget { + + border-top-left-radius: 12px; + border-top-right-radius: 12px; + + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + +} + + +list.boxed-list, list.boxed-list > row:first-child { + + border-top-left-radius: 12px; + border-top-right-radius: 12px; + +} + +list.boxed-list, list.boxed-list > row:last-child { + + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; + +} + + + +/* welcome.css */ + +grid.hints { + + background-image: -gtk-icontheme('tipoftheday-symbolic'); + background-position: right top; + background-size: 200px auto; + background-repeat: no-repeat; + + min-height: 250px; + +} + +grid.hints > box { + + min-width: 130px; + +} |