1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
@define-color light-aubergine #DED7DB;
@define-color super-light-aubergine #F4F1F3;
#featured-star {
border-color: #F89516; /* yellow */
color: #FFC51D; /* orange */
}
.grid-lines {
border-color: shade (@light-aubergine, 1.025);
}
#screenshot-preview {
border-color: #000;
color: #000;
border-width: 2;
border-radius: 3;
}
.backforward-left-button {
border-radius: 3 0 0 3;
}
.backforward-right-button {
border-radius: 0 3 3 0;
}
.subtle,
#subtle-label {
-GtkWidget-link-color: shade (@super-light-aubergine, 0.5);
-GtkWidget-visited-link-color: shade (@super-light-aubergine, 0.6);
color: shade (@super-light-aubergine, 0.5); /* non-link text color */
text-shadow: 0 1 2 lighter (@super-light-aubergine);
}
.cellrenderer-button {
border-radius: 3
}
.cellrenderer-avgrating-label {
color: #8E8E8E; /* dark gray */
}
.cellrenderer-avgrating-label:selected {
color: white;
}
.more-link {
-GtkButton-inner-border: 0;
-GtkButton-default-border: 0;
-GtkButton-default-outside-border: 0;
color: darker (@light-aubergine);
background-color: shade (@super-light-aubergine, 0.925);
border-color: shade (@super-light-aubergine, 0.875);
text-shadow: 0 1 2 white;
}
.frame-header-title {
text-shadow: 0 1 2 white;
}
.item-view-separator {
border-color: shade (@light-aubergine, 0.9);
border-width: 1;
}
.light-aubergine-bg {
background-color: @light-aubergine;
}
.super-light-aubergine-bg {
background-color: @super-light-aubergine;
border-color: shade (@super-light-aubergine, 0.975)
}
GtkViewport {
background-color: @super-light-aubergine;
border-width: 0;
padding: 0;
}
|