-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
226 lines (198 loc) · 4.33 KB
/
styles.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
/* Set the margin and padding for the whole document */
* {
margin: 0;
padding: 0;
}
/* Set the font style for the document */
body, h1, h2, p {
font-family: Arial, sans-serif;
color: #fff; /* Set text color to white */
}
.hero-image {
background-image: url("ammaarfinalbg.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 100%
height: 100vh;
position: relative; /* Required for z-index to work */
}
/* Set the style for the header */
h1 {
text-align: center;
background-color: #000; /* Black background */
color: #fff; /* White text color */
padding: 20px;
margin: 0;
}
/* Set the style for the navigation links */
nav {
background-color: #000; /* Black background */
border-bottom: 1px solid #fff; /* White border */
text-align: center;
padding: 10px;
margin-bottom: 20px;
}
/* Set the style for the navigation links */
nav a {
text-decoration: none;
color: #fff; /* White text color */
margin: 10px;
padding: 10px;
border: 1px solid #fff; /* White border */
border-radius: 5px;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #fff; /* White background */
color: #000; /* Black text color */
}
/* Set the style for the content */
#index, #education, #experience, #hobbies, #achieve, #introduction, #image {
margin: 20px;
padding: 20px;
border: 1px solid #fff; /* White border */
background-color: #000; /* Black background */
display: flexbox;
}
#image{
display: block;
margin-left: auto;
margin-right: auto;
width: 20%;
}
/* Set the style for the footer */
footer {
background-color: #000; /* Black background */
color: #fff; /* White text color */
text-align: center;
padding: 10px;
}
form {
width: 400px;
margin: auto;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"], input[type="email"], textarea {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #fff; /* White border */
border-radius: 4px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #fff; /* White background */
color: #000; /* Black text color */
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
input[type="submit"]:hover {
background-color: #333; /* Darker background on hover */
}
textarea {
height: 150px;
}
table {
border-color: #fff; /* White border */
width: 100%;
max-width: fit-content;
margin: auto;
font-size: 16px;
text-align: center;
}
table td > a {
color: #fff; /* White text color */
font-weight: bold;
text-decoration: underline;
}
#introduction img ~ p{
color: #fff; /* White text color */
}
#hobbies h2 + p{
color: #fff; /* White text color */
}
#hobbies img{
display: block;
margin: 100px;
border: white;
padding: 60px;
border-width: 30px;
}
#paragraph{
display: grid;
grid-template-rows: 50px 50px;
grid-template-columns: 100%;
row-gap: 100px;
color: #fff; /* White text color */
}
body.aerospace {
color: black;
}
body.artificial-intelligence {
color: black;
}
@media screen and (min-width: 1000px) {
img {
max-width: 70vw;
height: 50vh;
}
body div {
flex-direction: row;
padding: 1rem 2rem;
}
body p {
width: 50%;
margin: auto;
font-size: 1.5rem;
}
body ul, ol {
width: 100%;
margin: auto;
font-size: 1.5rem;
}
table {
text-align: left;
max-width: 70%;
}
input[type="text"], input[type="email"], textarea {
padding: 20px;
margin-bottom: 15px;
box-sizing: content-box;
}
.hero-image {
height: 600px;
}
}
/* Desktop layout */
@media screen and (min-width: 1400px) {
header {
flex-direction: row;
justify-content:space-between;
padding: 1rem 1rem;
}
body {
display: flexbox;
}
body p {
width: 50%;
}
table {
text-align: right;
max-width: 90%;
}
input[type="text"], input[type="email"], textarea {
padding: 25px;
margin-bottom: 20px;
box-sizing: content-box;
}
.hero-image {
height: 800px;
}
}