AGS/style.scss

24 lines
540 B
SCSS
Raw Normal View History

2024-11-21 10:01:26 +07:00
// https://gitlab.gnome.org/GNOME/gtk/-/blob/gtk-3-24/gtk/theme/Adwaita/_colors-public.scss
$theme_fg_color: "@theme_fg_color";
$theme_bg_color: "@theme_bg_color";
2024-11-22 23:17:38 +07:00
button {
all: unset;
}
2024-11-22 22:31:33 +07:00
window.Agenda {
> button {
margin: 24px;
> box {
/* From https://css.glass */
2024-11-23 18:36:32 +07:00
font-size: 1.8em;
text-shadow: 0px 0px 4px #000000;
background: rgba(0, 0, 0, 0.2);
2024-11-22 22:31:33 +07:00
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
2024-11-23 18:36:32 +07:00
border: 1px solid rgba(0, 0, 0, 0.3);
2024-11-22 22:31:33 +07:00
padding: 24px;
2024-11-21 10:01:26 +07:00
}
2024-11-22 22:31:33 +07:00
}
2024-11-21 10:01:26 +07:00
}