-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.css
More file actions
87 lines (75 loc) · 1.74 KB
/
course.css
File metadata and controls
87 lines (75 loc) · 1.74 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
.downloadLink {
text-decoration: underline;
color: blue;
cursor: pointer;
}
.feedback-savemove-btn {
width: auto !important;
}
.strong-warning {
animation: blink 1s infinite;
}
@keyframes blink {
0% {
opacity: 1;
background-color: red;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
background-color: red;
}
}
.today-btn {
position: fixed;
background-color: #4caf50;
color: white;
padding: 0 12px;
border-radius: 4px;
font-size: 12px;
font-weight: bold;
cursor: pointer;
z-index: 10001;
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
white-space: nowrap;
display: flex;
align-items: center;
animation: today-slide-in 0.2s ease-out;
transition: background-color 0.2s, transform 0.1s;
}
.today-btn:hover {
background-color: #45a049;
transform: scale(1.05);
}
.today-btn:active {
transform: scale(0.95);
}
@keyframes today-slide-in {
from { opacity: 0; transform: translateX(-10px); }
to { opacity: 1; transform: translateX(0); }
}
.result-list.show-status {
border-left: 6px solid #eee !important;
margin-bottom: 2px;
transition: all 0.2s ease;
box-sizing: border-box;
}
.result-list.status-recent { border-left-color: #4caf50 !important; background-color: #f0fff4; }
.result-list.status-viewed { border-left-color: #81c784 !important; }
.result-list.status-unviewed { border-left-color: #ff4d4f !important; opacity: 0.8; }
.rate-badge {
display: inline-block;
margin-left: 10px;
padding: 2px 10px;
background-color: #4caf50;
color: white;
border-radius: 12px;
font-size: 13px;
font-weight: bold;
vertical-align: middle;
}
.block-title-txt {
align-items: center;
}