Skip to content

Commit 81d983b

Browse files
authored
Merge pull request #185 from msv6264/company-policies
company policies added
2 parents 1f9cafb + 7fdd9ee commit 81d983b

21 files changed

+1134
-52
lines changed

public/AllmediaLts.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,10 @@ <h3>job description</h3>
130130
<div class="grid-container">
131131
<div class="grid-item">
132132
<h2>Company Policies</h2>
133-
<a href="#">Privacy Policy</a>
134-
<a href="#">Returns</a>
135-
<a href="#">Terms & Conditions</a>
136-
<a href="#">Shipping</a>
133+
<a href="privacyPolicy.html">Privacy Policy</a>
134+
<a href="returns.html">Returns</a>
135+
<a href="termsAndC.html">Terms & Conditions</a>
136+
<a href="shipping.html">Shipping</a>
137137
</div>
138138
<div class="vertical-logo">LUMINA</div>
139139
<div class="grid-item">

public/ITWorlds.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ <h3>job description</h3>
131131
<div class="grid-container">
132132
<div class="grid-item">
133133
<h2>Company Policies</h2>
134-
<a href="#">Privacy Policy</a>
135-
<a href="#">Returns</a>
136-
<a href="#">Terms & Conditions</a>
137-
<a href="#">Shipping</a>
134+
<a href="privacyPolicy.html">Privacy Policy</a>
135+
<a href="returns.html">Returns</a>
136+
<a href="termsAndC.html">Terms & Conditions</a>
137+
<a href="shipping.html">Shipping</a>
138138
</div>
139139
<div class="vertical-logo">LUMINA</div>
140140
<div class="grid-item">

public/ITinfosy.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ <h3>job description</h3>
9696
<div class="grid-container">
9797
<div class="grid-item">
9898
<h2>Company Policies</h2>
99-
<a href="#">Privacy Policy</a>
100-
<a href="#">Returns</a>
101-
<a href="#">Terms & Conditions</a>
102-
<a href="#">Shipping</a>
99+
<a href="privacyPolicy.html">Privacy Policy</a>
100+
<a href="returns.html">Returns</a>
101+
<a href="termsAndC.html">Terms & Conditions</a>
102+
<a href="shipping.html">Shipping</a>
103103
</div>
104104
<div class="vertical-logo">LUMINA</div>
105105
<div class="grid-item">

public/InfoStatics.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ <h3>job description</h3>
127127
<div class="grid-container">
128128
<div class="grid-item">
129129
<h2>Company Policies</h2>
130-
<a href="#">Privacy Policy</a>
131-
<a href="#">Returns</a>
132-
<a href="#">Terms & Conditions</a>
133-
<a href="#">Shipping</a>
130+
<a href="privacyPolicy.html">Privacy Policy</a>
131+
<a href="returns.html">Returns</a>
132+
<a href="termsAndC.html">Terms & Conditions</a>
133+
<a href="shipping.html">Shipping</a>
134134
</div>
135135
<div class="vertical-logo">LUMINA</div>
136136
<div class="grid-item">

public/TermsAndC.css

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
5+
box-sizing: border-box;
6+
}
7+
8+
body {
9+
height: 100vh;
10+
width: 100%;
11+
background-color: rgb(247, 247, 178) !important;
12+
}
13+
14+
#nav {
15+
display: flex;
16+
align-items: center;
17+
justify-content: space-between;
18+
width: 100%;
19+
padding: 30px 50px;
20+
background-color: #f7e2b1ea;
21+
}
22+
23+
#nav img {
24+
width: 100px;
25+
}
26+
27+
#nav #right {
28+
display: flex;
29+
align-items: center;
30+
gap: 40px;
31+
}
32+
33+
#nav a {
34+
text-decoration: none;
35+
font-weight: 400;
36+
color: #000;
37+
font-size: 0.8rem;
38+
letter-spacing: -1px;
39+
transition: font-size 0.3s;
40+
}
41+
42+
#nav a:hover {
43+
font-size: 2vw;
44+
}
45+
46+
.terms-section {
47+
padding: 40px 20px;
48+
color: #333;
49+
}
50+
51+
.terms-section .container {
52+
max-width: 1200px;
53+
margin: 0 auto;
54+
}
55+
56+
.terms-section .content {
57+
background-color: #f0ebd5;
58+
padding: 30px;
59+
border-radius: 8px;
60+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
61+
}
62+
63+
.terms-section h1 {
64+
font-size: 32px;
65+
font-weight: 600;
66+
color: #222;
67+
margin-bottom: 20px;
68+
}
69+
70+
.terms-section h2 {
71+
font-size: 28px;
72+
font-weight: 500;
73+
color: #222;
74+
margin-top: 20px;
75+
margin-bottom: 15px;
76+
}
77+
78+
.terms-section p {
79+
font-size: 16px;
80+
line-height: 1.6;
81+
margin-bottom: 15px;
82+
color: #555;
83+
}
84+
85+
.terms-section ul {
86+
list-style-type: disc;
87+
padding-left: 20px;
88+
}
89+
90+
.terms-section ul li {
91+
font-size: 16px;
92+
line-height: 1.6;
93+
color: #555;
94+
}
95+
96+
/* Mobile Responsiveness */
97+
@media (max-width: 768px) {
98+
.terms-section .content {
99+
padding: 20px;
100+
}
101+
102+
.terms-section h1 {
103+
font-size: 28px;
104+
}
105+
106+
.terms-section h2 {
107+
font-size: 24px;
108+
}
109+
110+
.terms-section p,
111+
.terms-section ul li {
112+
font-size: 14px;
113+
}
114+
}
115+
116+
117+
@media (min-width: 768px) {
118+
#nav {
119+
flex-direction: row;
120+
justify-content: space-between;
121+
padding: 30px 50px;
122+
}
123+
124+
#nav img {
125+
width: 100px;
126+
}
127+
128+
#nav a {
129+
font-size: 1.5vw;
130+
}
131+
132+
#nav i {
133+
font-size: 1.5vw;
134+
}
135+
136+
}
137+
138+
#nav i {
139+
font-weight: 100px;
140+
font-size: 1rem;
141+
}
142+
143+
#right a.login-btn {
144+
padding: 10px 20px;
145+
background-color: #000000;
146+
color: white;
147+
border-radius: 25px;
148+
font-size: 1rem;
149+
text-decoration: none;
150+
font-weight: bold;
151+
}
152+
153+
#right a.login-btn:hover {
154+
color: black;
155+
background-color: #ffffff;
156+
}

public/contactUs.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ <h1>Contact Us</h1>
9292
<div class="grid-container">
9393
<div class="grid-item">
9494
<h2>Company Policies</h2>
95-
<a href="#">Privacy Policy</a>
96-
<a href="#">Returns</a>
97-
<a href="#">Terms & Conditions</a>
98-
<a href="#">Shipping</a>
95+
<a href="privacyPolicy.html">Privacy Policy</a>
96+
<a href="returns.html">Returns</a>
97+
<a href="termsAndC.html">Terms & Conditions</a>
98+
<a href="shipping.html">Shipping</a>
9999
</div>
100100
<div class="vertical-logo">
101101
LUMINA

public/events&webinar.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ <h2>Event: JavaScript Workshop</h2>
7373
<div class="grid-container">
7474
<div class="grid-item">
7575
<h2>Company Policies</h2>
76-
<a href="#">Privacy Policy</a>
77-
<a href="#">Returns</a>
78-
<a href="#">Terms & Conditions</a>
79-
<a href="#">Shipping</a>
76+
<a href="privacyPolicy.html">Privacy Policy</a>
77+
<a href="returns.html">Returns</a>
78+
<a href="termsAndC.html">Terms & Conditions</a>
79+
<a href="shipping.html">Shipping</a>
8080
</div>
8181
<div class="vertical-logo">
8282
LUMINA

public/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,10 @@ <h5>Isabella Nguyen</h5>
306306
<div class="grid-container">
307307
<div class="grid-item">
308308
<h2>Company Policies</h2>
309-
<a href="#">Privacy Policy</a>
310-
<a href="#">Returns</a>
311-
<a href="#">Terms & Conditions</a>
312-
<a href="#">Shipping</a>
309+
<a href="privacyPolicy.html">Privacy Policy</a>
310+
<a href="returns.html">Returns</a>
311+
<a href="termsAndC.html">Terms & Conditions</a>
312+
<a href="shipping.html">Shipping</a>
313313
</div>
314314
<div class="vertical-logo">
315315
LUMINA

public/internships.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -677,10 +677,10 @@ <h3 class="job-title">Marketing Intern</h3>
677677
<div class="grid-container">
678678
<div class="grid-item">
679679
<h2>Company Policies</h2>
680-
<a href="#">Privacy Policy</a>
681-
<a href="#">Returns</a>
682-
<a href="#">Terms & Conditions</a>
683-
<a href="#">Shipping</a>
680+
<a href="privacyPolicy.html">Privacy Policy</a>
681+
<a href="returns.html">Returns</a>
682+
<a href="termsAndC.html">Terms & Conditions</a>
683+
<a href="shipping.html">Shipping</a>
684684
</div>
685685
<div class="vertical-logo">
686686
LUMINA

public/jobs.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ <h3 class="job-title">PHP Developer</h3>
271271
<div class="grid-container">
272272
<div class="grid-item">
273273
<h2>Company Policies</h2>
274-
<a href="#">Privacy Policy</a>
275-
<a href="#">Returns</a>
276-
<a href="#">Terms & Conditions</a>
277-
<a href="#">Shipping</a>
274+
<a href="privacyPolicy.html">Privacy Policy</a>
275+
<a href="returns.html">Returns</a>
276+
<a href="termsAndC.html">Terms & Conditions</a>
277+
<a href="shipping.html">Shipping</a>
278278
</div>
279279
<div class="vertical-logo" style="color:red;">LUMINA</div>
280280
<div class="grid-item">

0 commit comments

Comments
 (0)