AGS/style.scss

24 lines
547 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 */
font-size: 1.3em;
text-shadow: 2px 2px 2px #000000;
2024-11-22 22:31:33 +07:00
background: rgba(64, 47, 47, 0.32);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(64, 47, 47, 0.6);
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
}