-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
117 lines (99 loc) · 1.9 KB
/
popup.css
File metadata and controls
117 lines (99 loc) · 1.9 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
body {
width: 300px;
padding: 16px;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.no-timer {
color: #666;
text-align: center;
padding: 20px 0;
}
.timer-info {
background: #f5f5f5;
border-radius: 0 16px 16px 0;
padding: 12px;
margin-bottom: 12px;
}
.timer-info.active {
background: #f0f7ff;
border-left: 4px solid #4a90e2;
}
.timer-info.paused {
background: #f5f5f5;
border-left: 4px solid #999;
}
.timer-header {
margin-bottom: 8px;
}
.timer-task {
color: #333;
font-weight: 600;
text-decoration: none;
font-size: 14px;
display: block;
margin-bottom: 4px;
}
.timer-task:hover {
color: #4a90e2;
}
.timer-title {
color: #666;
font-size: 12px;
line-height: 1.4;
margin-top: 4px;
word-break: break-word;
}
.timer-time {
font-size: 20px;
font-weight: bold;
color: #333;
margin: 8px 0;
}
.timer-status {
font-size: 12px;
margin: 8px 0;
}
.timer-status.active {
color: #4a90e2;
}
.timer-status.paused {
color: #666;
}
.timer-control {
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
padding: 6px 12px;
font-size: 12px;
cursor: pointer;
width: 100%;
margin-top: 8px;
transition: all 0.2s ease;
}
.timer-control:not(:disabled):hover {
background: #f8f8f8;
border-color: #999;
}
.timer-control:disabled {
background: #f5f5f5;
border-color: #ddd;
color: #999;
cursor: not-allowed;
opacity: 0.7;
}
.active .timer-control:not(:disabled) {
background: #4a90e2;
color: white;
border-color: #4a90e2;
}
.active .timer-control:not(:disabled):hover {
background: #357abd;
border-color: #357abd;
}
.popup-title {
margin: 0 0 16px 0;
font-size: 18px;
font-weight: 500;
color: inherit;
}