-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss and fonts.css
More file actions
59 lines (53 loc) · 2.25 KB
/
css and fonts.css
File metadata and controls
59 lines (53 loc) · 2.25 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
52
53
54
55
56
57
58
59
/* تنسيق عام للنصوص */
body {
font-family: 'Arial', sans-serif; /* عائلة الخط الافتراضية */
}
/* تنسيق النص باستخدام المعرف (id) */
#unique-paragraph {
color: red;
font-size: 20px; /* حجم الخط */
font-weight: bold; /* وزن الخط (عريض) */
font-family: 'Courier New', monospace; /* عائلة الخط */
text-transform: uppercase; /* تحويل النص إلى أحرف كبيرة */
}
/* تنسيق الصفوف الزوجية في الجدول */
table tr:nth-child(even) {
background-color: #f9f9f9;
font-size: 16px; /* حجم الخط */
font-weight: normal; /* وزن الخط (عادي) */
font-family: 'Times New Roman', serif; /* عائلة الخط */
font-style: italic; /* تغيير النص (مائل) */
}
/* تنسيق الصفوف الفردية في الجدول */
table tr:nth-child(odd) {
background-color: #e9e9e9;
font-size: 16px; /* حجم الخط */
font-weight: bold; /* وزن الخط (عريض) */
font-family: 'Georgia', serif; /* عائلة الخط */
text-transform: lowercase; /* تحويل النص إلى أحرف صغيرة */
}
/* تنسيق العمود الثالث في الجدول */
table tr td:nth-child(3) {
font-style: italic;
font-size: 14px; /* حجم الخط */
font-weight: bold; /* وزن الخط (عريض) */
font-family: 'Courier New', monospace; /* عائلة الخط */
text-decoration: overline; /* تغيير النص (وضع خط فوق النص) */
}
/* ألوان متناوبة للنصوص */
.alternate-colors p:nth-child(odd) {
background-color: #cce5ff;
padding: 5px;
font-size: 16px; /* حجم الخط */
font-weight: 500; /* وزن الخط (متوسط) */
font-family: 'Arial', sans-serif; /* عائلة الخط */
text-transform: uppercase; /* تحويل النص إلى أحرف كبيرة */
}
.alternate-colors p:nth-child(even) {
background-color: #ffccff;
padding: 5px;
font-size: 16px; /* حجم الخط */
font-weight: 700; /* وزن الخط (عريض) */
font-family: 'Helvetica', sans-serif; /* عائلة الخط */
text-decoration: underline; /* تغيير النص (وضع خط تحت النص) */
}