Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 39550
1
/* activity.css */
2
3
.webapp-notification-indicator
4
position : relative
5
font-size : 17pt
6
color : #666
7
cursor : pointer
8
margin-right : 6px
9
&:hover
10
color: #222
11
12
.webapp-notification-unseen-count
13
font-size : 8pt
14
color : red
15
position : absolute
16
left : 16px
17
top : 11px
18
font-weight : bold
19
background : transparent
20
21
.webapp-notification-list
22
width : 50%
23
z-index : 10
24
margin-left : 0px
25
position : fixed
26
box-shadow : 0px 0px 15px #aaa
27
border : 2px solid #ccc
28
top : 43px
29
background : white
30
right : 2em
31
overflow-y : auto
32
overflow-x : hidden
33
font-size : 10pt
34
padding : 4px
35
border-radius : 5px
36
37
@media (max-width: 767px)
38
.webapp-notification-list
39
width: 75%
40
41