-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.css
91 lines (74 loc) · 1.62 KB
/
style.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
body {
box-sizing: border-box;
margin: 0;
/* قم بتحويل اتجاه الكتابة من اليسار لليمين */
font-family: 'Cairo', sans-serif;
}
nav {
/* #53a1eb أضف خلفية بلون */
/* باستخدام خاصية background-color */
display: flex;
justify-content: space-between;
}
.header-img {
/* أعطي الصورة عرض بقيمة */
/* 10% */
/* أعطي حاشية داخلية بقيمة */
/* 10px */
/* من جميع الاتجاهات */
}
.nav-list {
display: flex;
}
.nav-item {
list-style: none;
padding: 10px;
}
.nav-item a {
text-decoration: none;
/* غيّر لون الخط للون الأبيض */
}
.main-section {
width: 80%;
margin: auto;
/* أعطي حد أعلى لعرض القسم بقيمة */
/* 1000px */
/* باستخدام خاصية */
/* max-width */
/* قم بتوسيط النصوص في المنتصف */
}
.main-section h1 {
/* #53a1eb قم بتلوين النص باللون التالي */
}
.main-img {
width: 100%;
/* قم بتحديد قيمة الارتفاع للصورة لتكون */
/* 100% */
}
footer {
background-color: #53a1eb;
padding: 10px;
text-align: center;
color: white;
}
main,
section {
/* أعطي عرض بقيمة */
/* 90% */
margin: 0 auto;
}
section h3 {
background-color: #e2e9f0;
color: #53a1eb;
/* قم بإضافة حاشية داخلية من الأعلى والأسفل بقيمة */
/* 10px */
}
section h2 {
text-align: center;
/* #e2e9f0 أضف خلفية بلون */
color: #53a1eb;
}
section p {
text-align: justify;
line-height: 30px;
}