-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (43 loc) · 970 Bytes
/
Copy pathstyle.css
File metadata and controls
48 lines (43 loc) · 970 Bytes
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
body {
font-family: 'IBM Plex Sans Arabic', sans-serif;
}
* {
font-family: 'IBM Plex Sans Arabic', sans-serif;
}
/* تأثير hover على الكروت */
.card-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* الوضع الليلي */
body.dark-mode {
background-color: #121212;
color: #e0e0e0;
}
body.dark-mode .card {
background-color: #1e1e1e;
color: white;
}
body.dark-mode table {
color: white;
}
/* الروابط داخل الشريط الجانبي */
#sidebar .nav-link {
color: #bbb;
padding: 10px 15px;
border-radius: 8px;
transition: 0.3s;
}
#sidebar .nav-link:hover {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
/* العنصر المفعّل */
#sidebar .nav-link.active {
background-color: #0d6efd;
color: #fff;
font-weight: bold;
}