Skip to content

Commit

Permalink
fixed stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eveeifyeve committed Aug 9, 2023
1 parent 7faec33 commit 41ddc06
Show file tree
Hide file tree
Showing 4 changed files with 151 additions and 15 deletions.
7 changes: 1 addition & 6 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
{
"Enable-HTTPS": true,
"PORT": "",
"Discord-Invite-Link": "https://www.discord.gg/teaclient",
"Page-Paths": {
"About-Page": "",
"Home-Page": "./index.html",
"Download-link": "./about.html"
}
"Discord-Invite-Link": "https://www.discord.gg/teaclient"
}
140 changes: 140 additions & 0 deletions css/downstyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* scrollbar */
::-webkit-scrollbar {
width: 1em;
}
::-webkit-scrollbar-track {
background: hsl(0, 0%, 12%);
}
::-webkit-scrollbar-thumb {
background: hsl(0, 0%, 9%);
border-radius: 10vw;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(0, 0%, 0%);
}
/* header */
.header{
min-height: 100vh;
width: 100%;
background-image: url(../assets/img/background.png);
background-position: center;
background-size: cover;
position: relative;
}
/* navigation */
nav{
display: flex;
padding: 1% 2%;
justify-content: space-between;
align-items: center;
}
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;
}
11 changes: 6 additions & 5 deletions download.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/downstyle.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 @@ -14,12 +14,13 @@
<a href="index.html"><img src="assets/img/logo_white.png"></a>
<div class="nav-links">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="index">HOME</a></li>
<li><a href="news">NEWS</a></li>
<li><a href="contact">CONTACT</a></li>
<li><a href="https://store.teaclient.net">STORE</a></li>
<li><a href="https://docs.teaclient.net">DOCS</a></li>
<li><a href="social.html">SOCIALS</a></li>
<li><a href="social">SOCIALS</a></li>
<i class="fa-solid fa-list-dropdown" style="color: #ffffff;"></i>
</ul>
</div>
</nav>
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<a href="index.html"><img src="assets/img/logo_white.png"></a>
<div class="nav-links">
<ul>
<li><a href="download.html">DOWNLOAD</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="download">DOWNLOAD</a></li>
<li><a href="news">NEWS</a></li>
<li><a href="contact">CONTACT</a></li>
<li><a href="https://store.teaclient.net">STORE</a></li>
<li><a href="https://docs.teaclient.net">DOCS</a></li>
<li><a href="social.html">SOCIALS</a></li>
<li><a href="socialxss">SOCIALS</a></li>
</ul>
</div>
</nav>
Expand Down

0 comments on commit 41ddc06

Please sign in to comment.