Skip to content

Commit

Permalink
started contact_us section
Browse files Browse the repository at this point in the history
  • Loading branch information
voidedaries committed Aug 9, 2023
1 parent 0076389 commit 3f7ce5c
Show file tree
Hide file tree
Showing 7 changed files with 157 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="x-icon" href="assets/img/logo_white.png">
<link rel="stylesheet" href="./css/404style.css">
<link rel="stylesheet" href="./css/404-style.css">
<title>Page Not Found</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chango&family=Roboto:wght@300&display=swap" rel="stylesheet">
Expand Down
Empty file removed about.html
Empty file.
7 changes: 6 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tea Client</title>
<link rel="shortcut icon" type="x-icon" href="assets/img/logo_white.png">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/contact-style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
Expand All @@ -24,6 +24,11 @@ <h4>Tea Client</h4>
</nav>
</section>

<div class="container"></div>
<h1>Connect With Us</h1>
<p>Feel free to get in touch with us! If you have any questions, suggestions, or just want to say hello, drop us an email at [email protected]. Before reaching out, we kindly recommend checking out our FAQ section as it might have the answers you're looking for. We value your time and strive to provide the best possible support.</p>


<footer>
<div class="footer-content">
<h3>Tea Client</h3>
Expand Down
File renamed without changes.
149 changes: 149 additions & 0 deletions css/contact-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* scrollbar */
::-webkit-scrollbar {
width: 1em;
}
::-webkit-scrollbar-track {
background: #29292a;
}
::-webkit-scrollbar-thumb {
background: #52565a;
border-radius: 10vw;
}
::-webkit-scrollbar-thumb:hover {
background: #7d8183;
}
/* header */
.header{
min-height: 100vh;
width: 100%;
background-image: url(../assets/img/background.png);
background-position: center;
background-size: cover;
position: relative;
}
/* navigation */
nav {
position: relative;
display: flex;
padding: 1% 2%;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 0, 0, 0.3);
}
nav h4{
font-family: 'Panton', sans-serif;
color: white;
padding-left: 20px;
font-size: 36px;

}
nav img{
width: 90px;
}
.nav-links{
flex: 1;
text-align: right;
}
.nav-links ul li{
list-style: none;
display: inline-block;
padding: 8px 12px;
position: relative;
}
.nav-links ul li a{
color: #FFF;
text-decoration: none;
font-family: 'Panton', sans-serif;
font-weight: bold;
font-size: 20px;
}
.nav-links ul li::after{
content: '';
width: 0%;
height: 3px;
background: #ffffff;
display: block;
margin: auto;
transform: 1s;
}
.nav-links ul li:hover::after{
width: 100%;

/* Footer */
}
footer{
background: #111;
height: auto;
width: 100%;
font-family: "Open Sans";
padding-top: 40px;
color: #fff;
}
.footer-content{
font-family: 'Panton', sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.socials{
display: flex;
justify-content: center;
width: 100px;
height: 100px;
}
/* footer navigation */
.fa-brands{
color: white;
transform: scale(2);
margin: 20px;
transition: 0.25s;
}
.fa-brands:hover{
color: gray;
}
.footerNav {
text-align: center;
}
.footerNav a{
font-family: 'Panton', sans-serif;
display: flex;
display: inline-block;
margin-right: 10px;
}
.footerNav a{
color: white;
margin: 20px;
text-decoration: none;
font-size: 1.3rem;
opacity: 0.7;
transition: 0.5s;
}
.footerNav a:hover{
opacity: 1;
}
/* footer bottom */
.footer-bottom{
overflow: auto;
background: #000;
width: 100%;
padding: 20px 0;
text-align: center;
}
.footer-bottom p{
margin-left: 20px;
float: left;
font-family: 'Panton', sans-serif;
font-size: 14px;
word-spacing: 2px;
}
#affiliation {
margin-right: 20px;
float: right;
}
File renamed without changes.
7 changes: 1 addition & 6 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Panton', sans-serif;
}
/* scrollbar */
::-webkit-scrollbar {
Expand Down Expand Up @@ -36,7 +37,6 @@ nav {
background-color: rgba(0, 0, 0, 0.3);
}
nav h4{
font-family: 'Panton', sans-serif;
color: white;
padding-left: 20px;
font-size: 36px;
Expand All @@ -58,7 +58,6 @@ nav img{
.nav-links ul li a{
color: #FFF;
text-decoration: none;
font-family: 'Panton', sans-serif;
font-weight: bold;
font-size: 20px;
}
Expand All @@ -80,12 +79,10 @@ footer{
background: #111;
height: auto;
width: 100%;
font-family: "Open Sans";
padding-top: 40px;
color: #fff;
}
.footer-content{
font-family: 'Panton', sans-serif;
display: flex;
align-items: center;
justify-content: center;
Expand All @@ -112,7 +109,6 @@ footer{
text-align: center;
}
.footerNav a{
font-family: 'Panton', sans-serif;
display: flex;
display: inline-block;
margin-right: 10px;
Expand All @@ -139,7 +135,6 @@ footer{
.footer-bottom p{
margin-left: 20px;
float: left;
font-family: 'Panton', sans-serif;
font-size: 14px;
word-spacing: 2px;
}
Expand Down

0 comments on commit 3f7ce5c

Please sign in to comment.