Skip to content

Commit 2d7d925

Browse files
committed
Deploy to GitHub Pages: b9a7e39
1 parent 334ec89 commit 2d7d925

File tree

25 files changed

+189
-96
lines changed

25 files changed

+189
-96
lines changed

contact/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
type="image/x-icon"
1818
/> -->
1919

20-
<!-- <link rel="stylesheet" href="/css/tailwind-runtime.css" /> -->
20+
<link rel="stylesheet" href="/css/tailwind-runtime.css" />
2121
<link rel="stylesheet" href="/css/tailwind-build.css" />
2222
<link rel="stylesheet" href="/css/index.css" />
2323

@@ -96,21 +96,21 @@
9696
</header>
9797
<section class="tw-flex tw-w-full tw-flex-col tw-p-[5%] tw-mt-[150px] max-lg:tw-p-4 sm:tw-w-[100%] md:tw-w-[80%] lg:tw-w-[60%] xl:tw-w-[50%]">
9898
<h3 class="text-left tw-text-4xl tw-font-medium max-md:tw-text-2xl">
99-
contact
99+
Contact
100100
</h3>
101101
<form id="contact-form" class="tw-space-y-4 tw-mt-[30px]">
102102
<div>
103-
<label for="name" class="tw-block tw-text-sm tw-font-medium tw-text-gray-700">name</label>
103+
<label for="name" class="tw-block tw-text-sm tw-font-medium tw-text-gray-700">Name</label>
104104
<input type="text" id="name" name="name" required
105105
class="tw-mt-1 tw-block tw-w-full tw-px-4 tw-py-2 tw-border tw-border-gray-300 tw-rounded-md tw-shadow-sm focus:tw-ring-blue-500 focus:tw-border-blue-500"/>
106106
</div>
107107
<div>
108-
<label for="email" class="tw-block tw-text-sm tw-font-medium tw-text-gray-700">email</label>
108+
<label for="email" class="tw-block tw-text-sm tw-font-medium tw-text-gray-700">Email</label>
109109
<input type="email" id="email" name="email" required
110110
class="tw-mt-1 tw-block tw-w-full tw-px-4 tw-py-2 tw-border tw-border-gray-300 tw-rounded-md tw-shadow-sm focus:tw-ring-blue-500 focus:tw-border-blue-500"/>
111111
</div>
112112
<div>
113-
<label for="message" class="tw-block tw-text-sm tw-font-medium tw-text-gray-700">message</label>
113+
<label for="message" class="tw-block tw-text-sm tw-font-medium tw-text-gray-700">Message</label>
114114
<textarea id="message" name="message" rows="5" required
115115
class="tw-mt-1 tw-block tw-w-full tw-px-4 tw-py-2 tw-border tw-border-gray-300 tw-rounded-md tw-shadow-sm focus:tw-ring-blue-500 focus:tw-border-blue-500"></textarea>
116116
</div>

css/index.css

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,19 @@ header > .collapsible-header{
224224
}
225225

226226
.text-overlay {
227-
position: absolute;
227+
position: absolute;
228+
top: 50%;
229+
left: 40px;
230+
transform: translate(0%, -50%);
231+
/* display: flex;
232+
align-items: center;
233+
height: 100vh;
234+
*/
235+
/* position: absolute;*/
228236
color: white; /* Text color */
229-
top: 100px;
230-
left: 40px;
231-
width: 80%; /* Ensures the image fits the container */
237+
/* top: 100px;*/
238+
/* left: 40px;*/
239+
width: 60%; /* Ensures the image fits the container */
232240
/* font-size: 24px; /* Adjust font size */
233241
/* font-weight: bold;*/
234242
/* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional text shadow for readability */*/

css/tailwind-build.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/tailwind-runtime.css

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,11 +1241,6 @@ video {
12411241
padding-right: 1rem;
12421242
}
12431243

1244-
.max-lg\:tw-text-4xl {
1245-
font-size: 2.25rem;
1246-
line-height: 2.5rem;
1247-
}
1248-
12491244
.max-lg\:tw-shadow-md {
12501245
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
12511246
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
@@ -1272,6 +1267,11 @@ video {
12721267
line-height: 2rem;
12731268
}
12741269

1270+
.max-md\:tw-text-4xl {
1271+
font-size: 2.25rem;
1272+
line-height: 2.5rem;
1273+
}
1274+
12751275
.max-md\:tw-text-base {
12761276
font-size: 1rem;
12771277
line-height: 1.5rem;
@@ -1305,6 +1305,11 @@ video {
13051305
-moz-columns: 1;
13061306
columns: 1;
13071307
}
1308+
1309+
.sm\:tw-text-4xl {
1310+
font-size: 2.25rem;
1311+
line-height: 2.5rem;
1312+
}
13081313
}
13091314

13101315
@media (min-width: 768px) {
@@ -1321,6 +1326,11 @@ video {
13211326
-moz-columns: 3;
13221327
columns: 3;
13231328
}
1329+
1330+
.md\:tw-text-4xl {
1331+
font-size: 2.25rem;
1332+
line-height: 2.5rem;
1333+
}
13241334
}
13251335

13261336
@media (min-width: 1024px) {
@@ -1333,8 +1343,8 @@ video {
13331343
display: none;
13341344
}
13351345

1336-
.lg\:tw-w-\[50\%\] {
1337-
width: 50%;
1346+
.lg\:tw-w-\[60\%\] {
1347+
width: 60%;
13381348
}
13391349

13401350
.lg\:tw-columns-3 {
@@ -1349,6 +1359,11 @@ video {
13491359
.lg\:tw-justify-around {
13501360
justify-content: space-around;
13511361
}
1362+
1363+
.lg\:tw-text-6xl {
1364+
font-size: 3.75rem;
1365+
line-height: 1;
1366+
}
13521367
}
13531368

13541369
@media (min-width: 1280px) {
@@ -1369,6 +1384,11 @@ video {
13691384
.xl\:tw-justify-around {
13701385
justify-content: space-around;
13711386
}
1387+
1388+
.xl\:tw-text-7xl {
1389+
font-size: 4.5rem;
1390+
line-height: 1;
1391+
}
13721392
}
13731393

13741394
@media (prefers-color-scheme: dark) {

0 commit comments

Comments
 (0)