-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
163 lines (139 loc) · 2.5 KB
/
style.css
File metadata and controls
163 lines (139 loc) · 2.5 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/* ==========================================================
Fadi Al Machot — Academic Website
Clean professional theme (white + blue)
Last updated: October 2025
========================================================== */
:root {
--primary-color: #004c99;
--secondary-color: #007bff;
--text-color: #222;
--light-bg: #f9f9f9;
--footer-bg: #003366;
}
body {
font-family: "Segoe UI", Arial, sans-serif;
margin: 0;
padding: 0;
color: var(--text-color);
background: #fff;
line-height: 1.6;
}
/* Header */
header {
background: var(--primary-color);
color: #fff;
text-align: center;
padding: 60px 20px;
}
header h1 {
font-size: 2.4em;
margin: 0;
}
header h2 {
font-weight: 400;
font-size: 1.1em;
color: #cfe2ff;
margin-top: 8px;
}
/* Navigation */
nav {
background: var(--secondary-color);
text-align: center;
padding: 10px 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-weight: 600;
}
nav a:hover {
text-decoration: underline;
}
/* Layout container */
.container {
max-width: 1100px;
margin: 40px auto;
padding: 0 20px;
}
/* Section titles */
section h2 {
color: var(--primary-color);
border-bottom: 3px solid var(--secondary-color);
padding-bottom: 8px;
margin-bottom: 20px;
}
/* Home layout (photo + intro) */
.profile {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.profile img {
width: 220px;
height: 220px;
border-radius: 8px;
object-fit: cover;
border: 3px solid var(--primary-color);
}
.profile-text {
flex: 1;
min-width: 250px;
}
/* Highlighted boxes */
.highlight {
background: var(--light-bg);
padding: 15px;
border-left: 4px solid var(--secondary-color);
margin: 20px 0;
}
/* Footer */
footer {
background: var(--footer-bg);
color: #fff;
text-align: center;
padding: 25px 15px;
margin-top: 40px;
}
footer a {
color: #cfe2ff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Footer icons */
.footer-icons {
margin-top: 10px;
}
.footer-icons a {
display: inline-block;
margin: 0 8px;
color: #fff;
font-size: 1.3em;
}
.footer-icons a:hover {
color: #ffeb3b;
}
/* Contact info */
.contact-box {
background: var(--light-bg);
padding: 20px;
border-radius: 6px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.profile {
flex-direction: column;
align-items: center;
text-align: center;
}
nav a {
display: block;
margin: 8px 0;
}
header h1 {
font-size: 1.8em;
}
}