-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnotifications.css
More file actions
51 lines (46 loc) · 1.02 KB
/
notifications.css
File metadata and controls
51 lines (46 loc) · 1.02 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
.notifications {
position: fixed;
bottom: 20px;
right: -50%;
transform: scale(0);
background: linear-gradient(135deg, rgba(148, 148, 148, 0.26), rgba(68, 68, 68, 0.075));
backdrop-filter: blur(17px);
-webkit-backdrop-filter: blur(17px);
border: 1.5px solid transparent;
color: white;
padding: 10px 20px 10px 20px;
border-radius: 20px;
z-index: 10;
display: flex;
flex-direction: column;
width: 17em;
height: 7em;
transition: all 1s ease;
}
.notifytop {
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.notifytop .notifytitle {
font-size: 0.8rem;
font-weight: bold;
}
.notifytop i {
cursor: pointer;
padding: 2px;
transition: 0.3s;
background: transparent;
font-size: 0.5rem;
}
.notifytop i:hover {
background: rgba(207, 207, 207, 0.233);
border-radius: 100%;
padding: 2px;
}
.notifications .notifybody {
display: flex;
align-items: center;
gap: 10px;
}