blob: 2ff7ce1ddf426b7109ecaacc1423285bfe4a3ffe [file] [log] [blame]
Matteo Scandolo63e43eb2016-12-14 14:18:53 -08001xos-header {
2 .badge {
3 display: block;
4 width: 3px;
5 height: 3px;
6 border-radius: 50%;
7 border: 4px solid red;
8 background: transparent;
9 position: absolute;
10 right: 15px;
11 top: 18px;
12 }
13
14 .fa {
15 cursor: pointer;
16 }
17
18 .notification-panel {
19 position: absolute;
Matteo Scandoloc719e792016-12-14 15:48:31 -080020 background: darken(grey, 5);
21 right: 10px;
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080022 top: 60px;
23 border: 1px solid darken(grey, 35);
Matteo Scandoloc719e792016-12-14 15:48:31 -080024 max-height: 200px;
25 overflow-y: scroll;
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080026
27 ul {
28 margin: 0;
Matteo Scandoloc719e792016-12-14 15:48:31 -080029 padding: 0;
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080030 list-style: none;
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080031
32 li {
Matteo Scandoloc719e792016-12-14 15:48:31 -080033 padding: 10px;
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080034 border-bottom: 1px solid darken(grey, 35);
35 color: #fff;
Matteo Scandoloc719e792016-12-14 15:48:31 -080036
37 &.viewed {
38 background: darken(grey, 20);
39 }
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080040 }
41 }
42 }
43}