-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
245 lines (212 loc) · 5.01 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
body{
margin: 0;
padding: 0;
font-size: 18px;
}
header{
background-color: #2c5eff;
margin: 0px 20px;
color: #fff;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
footer{
margin-top: 50px;
background-color: #d8d7d7;
padding: 20px;
text-align: center;
font-family: Arial;
}
footer a{
text-decoration: none;
color: #2c5eff;
font-weight: bold;
}
footer a:hover{
color: #011e7c;
}
/* -----------some design for elements shared in kaza page-------------*/
.button-container {
text-align: center;
margin: 30px 0;
}
.back-button {
background-color: #2c5eff;
color: white;
padding: 12px 20px;
font-size: 18px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #1a3dbf;
}
.image-container {
display: flex;
justify-content: center;
margin: 20px 0;
}
.image-container img {
max-width: 65%;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.intro-text {
margin: 20px auto;
width: 80%;
text-align: justify;
font-size: 18px;
line-height: 1.6;
}
.choices-heading {
margin: 30px auto;
text-align: center;
font-size: 20px;
color: #2c5eff;
text-decoration: underline;
}
.highlight-text {
width: 80%;
margin: 20px auto;
text-align: center;
font-size: 20px;
font-weight: bold;
text-decoration: underline;
color: #2c5eff;
}
/* ---------------------schedule page------------------------ */
/* special header for schedule page */
.header-schedule{
text-align: center;
font-weight: bold;
}
.header-schedule h1{
color: #2c5eff;
background-color: #f4f4f4;
font-size: 40px;
margin: 20px 50px;
}
/* Schedule table design */
.schedule-table, tr, td, th {
border: 1px solid #ccc;
border-collapse: collapse; /* Ensures the borders between cells are merged */
text-align: center;
padding: 12px 15px; /*12 fo2 t7t, 15 yamin w shmel */
font-size: 16px;
font-weight: bold;
}
.schedule-table {
margin: auto; /* Center the table on the page */
width: 60%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.schedule-table a {
text-decoration: none;
color: #b20d0d;
font-weight: bold;
}
.schedule-table a:hover {
color: #2c5eff; /* Bright blue hover effect */
text-decoration: underline; /* Underline links on hover for better interactivity */
}
.schedule-table thead {
background-color: #2c5eff; /* Light blue background for header */
color: #fff; /* White text for contrast */
font-weight: bold; /* Bold text for header */
}
.schedule-table tfoot {
background-color: #f4f4f4; /* Light gray background for footer */
font-style: italic; /* Italicize footer text */
font-size: 14px; /* Smaller font size for footer */
}
.schedule-table tr:nth-child(even) {
background-color: #f1f1f1; /* Alternate row colors for better readability */
}
.schedule-table tr:hover {
background-color: #c4c0c0; /* Highlight row on hover */
}
/* ------------- style for both breakfast and lunch pages --------------- */
.food-container {
display: flex;
justify-content: center;
}
.subheading {
margin: 0;
font-size: 24px;
text-decoration: underline;
font-weight: bold;
color: #2c5eff;
text-align: center;
}
.food-list li {
list-style:square;
font-size: 18px;
padding: 10px 0;
text-align: center;
}
/* --------------- style for internship page---------------------- */
.image-sara-container {
max-width: 65%;
max-height: 300px;
border-radius: 60px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
text-align: center;
}
/* ------------------style for nightwork page-------------------- */
.task-list {
font-size: 18px;
line-height: 1.7;
text-align:start;
margin-left: 40px;
color: #333;
}
.task-list li {
margin-bottom: 10px;
}
/* ------------------style for university page-------------------- */
.content-container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
/* Table Styling */
.courses-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
.courses-table th,
.courses-table td {
border: 1px solid #ccc;
padding: 10px;
text-align: left;
}
.courses-table th {
background-color: #2c3e50;
color: white;
}
.courses-table tr:nth-child(even) {
background-color: #f9f9f9;
}
/* Image Styling */
.image-container {
text-align: center;
margin: 30px 0;
}
.campus-image {
max-width: 500px;
width: 100%;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.uni-img-container{
display: flex;
justify-content: center;
}
.image-container1{
display: flex;
justify-content: center;
margin: 20px 60px;
}