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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
.keybinding {
font-size: 16pt;
}
.keybinding .key {
font-weight: bold;
background-color: @theme_base_color;
padding: 8px 16px;
border: 1px solid alpha(@borders, 0.4);
border-radius: 5px;
}
.pomodoro-list > row {
padding: 12px 20px;
}
.pomodoro-list > row.pomodoro-wide-row {
padding: 12px 15px;
}
.pomodoro-list > row.pomodoro-slim-row {
padding-top: 8px;
padding-bottom: 8px;
}
.pomodoro-plugin-name {
font-weight: bold;
}
.pomodoro-plugin-description {
font-size: small;
}
.pomodoro-state-button {
padding-top: 5px;
padding-bottom: 6px;
font-size: 1.2em;
font-weight: bold;
}
.pomodoro-symbolic-button {
outline: 0;
border: 0;
padding: 25px;
border-radius: 50%;
box-shadow: none;
}
.pomodoro-symbolic-button:focus {
outline: 1px dashed alpha(@theme_fg_color, 0.1);
}
.pomodoro-symbolic-button:hover,
.pomodoro-symbolic-button.suggested-action {
outline: 0;
color: @theme_fg_color;
background-color: @theme_base_color;
background-image: none;
}
.pomodoro-symbolic-button:active,
.pomodoro-symbolic-button.suggested-action:active {
outline: 0;
color: shade(@theme_fg_color, 1.5);
background-color: @theme_base_color;
background-image: none;
}
.pomodoro-timer-label {
font-size: 55pt;
}
.pomodoro-separator-label:backdrop {
color: @insensitive_fg_color;
}
.pomodoro-screen-notification.background {
background-color: rgba(0, 0, 0, 0.7);
}
.pomodoro-screen-notification {
color: white;
transition: opacity 180ms ease-out;
opacity: 1.0;
}
.pomodoro-screen-notification.hidden {
opacity: 0.0;
}
.pomodoro-screen-notification .pomodoro-timer-label,
.pomodoro-screen-notification .pomodoro-timer-label:backdrop {
font-size: 55pt;
font-weight: normal;
text-shadow: 0px 5px 8px rgba(0, 0, 0, 0.10);
color: white;
}
.pomodoro-screen-notification label,
.pomodoro-screen-notification label:backdrop {
font-size: 11pt;
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.35);
color: white;
}
|