-
Notifications
You must be signed in to change notification settings - Fork 0
/
notification.css
121 lines (102 loc) · 1.98 KB
/
notification.css
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #f4f4f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 600px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
}
.tabs {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}
.tab {
border: none;
background-color: #e63946;
color: #fff;
padding: 10px 20px;
border-radius: 20px;
cursor: pointer;
font-size: 14px;
}
.tab.active {
background-color: #d62828;
font-weight: bold;
}
.notification-list {
border-top: 1px solid #ddd;
}
.notification-item {
display: flex;
padding: 15px 0;
border-bottom: 1px solid #ddd;
}
.notification-item:last-child {
border-bottom: none;
}
.notification-item.active {
background-color: #e0e0ff;
}
.profile-pic {
width: 50px;
height: 50px;
background-color: #ccc;
border-radius: 50%;
margin-right: 15px;
}
.notification-content {
flex-grow: 1;
}
.notification-content p {
font-size: 16px;
color: #333;
}
.notification-content .connections {
color: #555;
font-size: 14px;
}
.time {
font-size: 12px;
color: #999;
margin-top: 5px;
display: block;
}
.nav-bar {
position: fixed;
top: 20%;
right: 20px;
display: flex;
flex-direction: column;
align-items: flex-end;
background-color: #fff;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.icon-container {
display: flex;
flex-direction: column;
}
.nav-icon {
width: 30px;
height: 30px;
margin-bottom: 10px;
cursor: pointer;
}
.nav-icon:hover {
opacity: 0.7;
}