-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
148 lines (120 loc) · 2.67 KB
/
styles.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body {
font-family: 'Arial', sans-serif;
}
.sidebar {
width: 200px;
min-height: 100vh; /* Full height sidebar */
margin-top: 20px;
}
.dashboard {
padding: 20px;
}
.card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.notifications {
min-height: 100vh;
margin-top: 20px;
font-family: Arial, sans-serif;
}
.notifications h4 {
margin-bottom: 10px;
font-size: 1.2rem;
font-weight: bold;
}
.notifications ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.notifications li {
display: flex;
padding: 2px 0; /* Adds space between notifications */
border-bottom: 1px solid #ccc; /* Separator between notifications */
}
.notifications .icon {
margin-right: 10px; /* Adds space between the icon and text */
font-size: 30px; /* Adjust icon size */
color: #2d2d2d;
}
.notification-content p {
margin: 0;
font-size: 0.9rem; /* Smaller font for notification text */
color: #000;
}
.notification-content small {
color: #888;
font-size: 0.75rem; /* Smaller font for timestamp */
}
.welcome h3 {
margin-bottom: 10px;
}
.popular-mentors {
margin-top: 40px;
}
.navbar {
padding: 10px 15px;
}
.navbar-brand {
font-size: 1.5rem;
}
.navbar-nav .nav-link {
font-size: 1.2rem;
}
.navbar-nav .dropdown-toggle {
font-size: 1.2rem;
}
.header-container {
position: relative;
}
.navbar {
border-bottom: 1px solid #ddd;
}
#profile-dropdown {
margin-right: 20px; /* Adjust spacing from right as needed */
}
ul {
list-style-type: none; /* Hides bullets */
padding: 0; /* Removes default padding */
margin: 0;
margin-bottom: 90px;
}
ul li {
padding: 5px 0px; /* Increases padding around each item */
font-size: 16px;
display: flex;
align-items: center;
margin-bottom: 5px; /* Adds more space between list items */
}
ul li i {
margin-right: 10px;
}
ul li:hover {
background-color: #ddd; /* Optional hover effect */
}
/* Footer styling */
.footer {
width: 100%;
background-color: #343a40;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
}
.footer p {
margin: 0;
}
/* Card styling for a uniform layout */
.card {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease;
}
.card:hover {
transform: scale(1.05);
}
.icon {
margin-right: 10px;
}