-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathApplication.css
More file actions
125 lines (104 loc) · 2.93 KB
/
Application.css
File metadata and controls
125 lines (104 loc) · 2.93 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
* Copyright 2018-2023 elementary, Inc. (https://elementary.io)
* SPDX-License-Identifier: GPL-2.0-or-later
*/
window.background {
background: transparent;
box-shadow: none;
opacity: 0;
transition: opacity 1s ease;
}
window.background.initialized {
opacity: 1;
}
.date,
.time {
color: #fff;
}
.date {
font-size: 2em;
font-weight: 600;
margin-top: -0.5em;
opacity: 0.9;
text-shadow:
0 1px 2px alpha(black, 0.4),
0 1px 3px alpha(black, 0.1);
}
.time {
font-feature-settings: "cv01";
font-size: 10em;
font-weight: 500;
letter-spacing: -0.05em;
text-shadow:
0 1px 2px alpha(black, 0.3),
0 3px 6px alpha(black, 0.15);
}
@keyframes shake {
0% { margin-left: -32px; margin-right: 32px; }
25% { margin-left: 32px; margin-right: -32px; }
50% { margin-left: -16px; margin-right: 16px; }
75% { margin-left: 16px; margin-right: -16px; }
100% { margin-left: 0; margin-right: 0;}
}
.rounded {
border-radius: 6px;
}
.shake {
animation: shake 0.4s ease-in-out 1;
}
.card.collapsed label.h2 {
font-size: 1.5em;
}
check {
border-radius: 99px;
color: white;
margin: 2px;
min-height: 20px;
min-width: 20px;
-gtk-icon-source: -gtk-icontheme("check-active-symbolic");
-gtk-icon-transform: scale(0.6);
}
check.banana {
background-color: mix(@BANANA_500, @BANANA_700, 0.3);
-gtk-icon-shadow: 0 1px 1px shade(mix(@BANANA_500, @BANANA_700, 0.3), 0.7);
}
check.blueberry {
background-color: mix(@BLUEBERRY_300, @BLUEBERRY_500, 0.25);
-gtk-icon-shadow: 0 1px 1px shade(mix(@BLUEBERRY_300, @BLUEBERRY_500, 0.3), 0.7);
}
check.bubblegum {
background-color: mix(@BUBBLEGUM_300, @BUBBLEGUM_500, 0.25);
-gtk-icon-shadow: 0 1px 1px shade(mix(@BUBBLEGUM_300, @BUBBLEGUM_500, 0.3), 0.7);
}
check.cocoa {
background-color: @COCOA_300;
-gtk-icon-shadow: 0 1px 1px shade(@COCOA_300, 0.7);
}
check.grape {
background-color: mix(@GRAPE_300, @GRAPE_500, 0.5);
-gtk-icon-shadow: 0 1px 1px shade(mix(@GRAPE_300, @GRAPE_500, 0.3), 0.7);
}
check.latte {
background-color: mix(@LATTE_300, @LATTE_500, 0.25);
-gtk-icon-shadow: 0 1px 1px shade(mix(@LATTE_300, @LATTE_500, 0.3), 0.7);
}
check.lime {
background-color: mix(@LIME_300, @LIME_500, 0.25);
-gtk-icon-shadow: 0 1px 1px shade(mix(@LIME_300, @LIME_500, 0.3), 0.7);
}
check.mint {
background-color: mix(@MINT_300, @MINT_500, 0.75);
-gtk-icon-shadow: 0 1px 1px shade(mix(@MINT_300, @MINT_500, 0.3), 0.7);
}
check.orange {
background-color: mix(@ORANGE_300, @ORANGE_500, 0.5);
-gtk-icon-shadow: 0 1px 1px shade(mix(@ORANGE_300, @ORANGE_500, 0.3), 0.7);
}
check.slate {
background-color: @SLATE_100;
-gtk-icon-shadow: 0 1px 1px shade(@SLATE_100, 0.7);
}
check.strawberry {
background-color: mix(@STRAWBERRY_300, @STRAWBERRY_500, 0.25);
-gtk-icon-shadow: 0 1px 1px shade(mix(@STRAWBERRY_300, @STRAWBERRY_500, 0.3), 0.7);
}