27 lines
533 B
CSS
27 lines
533 B
CSS
.large-button {
|
|
border-radius: 9999px;
|
|
-gtk-outline-radius: 9999px;
|
|
padding: 6px 32px;
|
|
}
|
|
|
|
.big-button {
|
|
border-radius: 9999px;
|
|
-gtk-outline-radius: 9999px;
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.top-gradient {
|
|
background-image: linear-gradient(to bottom, @theme_bg_color, alpha(@theme_bg_color, 0) 100%);
|
|
}
|
|
|
|
.bottom-gradient {
|
|
background-image: linear-gradient(to top, @theme_bg_color, alpha(@theme_bg_color, 0) 100%);
|
|
}
|
|
|
|
.terminal {
|
|
background-color: #000;
|
|
border-radius: 6px;
|
|
-gtk-outline-radius: 6px;
|
|
padding: 6px 12px;
|
|
}
|