forked from zendesk/demo_apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
50 lines (42 loc) · 619 Bytes
/
app.css
File metadata and controls
50 lines (42 loc) · 619 Bytes
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
.notice_board a {
font-weight: bold;
}
.small {
color: #82A000;
}
.medium {
color: #5684B8;
}
.largest {
color: #DC7E7C;
}
.instruction_page code {
float: right;
margin-top: 6px;
margin-bottom: 6px;
padding: 4px;
}
.instruction_page span,
.notice_board span {
font-weight: bold;
padding: 5px;
}
.notice_board span {
display: block;
}
.notification_message,
.instruction_page code,
.notice_board a:hover {
background-color: #F5F5F5;
}
.active {
.small {
background-color: #82A000;
}
.medium {
background-color: #5684B8;
}
.largest {
background-color: #DC7E7C;
}
}