Skip to content

Commit

Permalink
web
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeFence committed Jan 14, 2024
1 parent 974d935 commit be00756
Show file tree
Hide file tree
Showing 16 changed files with 401 additions and 158 deletions.
93 changes: 93 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
*{
margin:0;
padding: 0;
font-family: sans-serif;
}
.banner{
width: 100%;
height: 100vh;
background-image: url(banner.png);
background-size: cover;
background-position: top;
}
.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo{
width: 120px;
cursor: pointer;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar ul li a{
text-decoration: none;
color: #fff;
text-transform: uppercase;
}
.navbar ul li::after{
content: '';
height: 3px;
width: 0;
background: #009688;
position: absolute;
left: 0;
bottom: -5;
transition: 0.5s;
}
.navbar ul li:hover::after{
width: 100%;
}
.content{
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: center;
color: #fff;
}
button{
width: 150;
padding: 15px 0;
text-align: center;
margin: 20px 10px;
border-radius: 25px;
font-weight: bold;
border: 2px solid #009688;
background: transparent;
color: #fff;
cursor: pointer;
position: relative;
overflow: hidden;
}
button:hover span{
width: 100%;
}
span{
background: #009688;
height: 100%;
width: 0;
border-radius: 25px;
position: absolute;
left: 0;
bottom: 0;
z-index: -1;
transition: 0.5s;
}
.end{
background-color: 0f0f0f;
background-size: auto;
background-position: center;
}
p{
color: White;
text-align: center;
}
31 changes: 31 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<html>
<head>
<title>PatchWare</title>
<link href="about.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="banner">
<div class="navbar">
<img src="logo.png" class="logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="patchos.html">PatchOS</a></li>
<li><a href="#">Other</a></li>
<li><a href="#">Troubleshoot</a></li>
<li><a href="about.html"><u>About</u></a></li>
</ul>
</div>
<div class="content">
<h1>Hi, I'm glad you're here</h1>
<h2>How did PatchWare come about? George Fence once created the BeanOS operating system, later renamed it PatchOS. </h2>
<span></span>
<h2> Cosmos started releasing better updates, and with it PatchOS too. </h2>
<span></span>
<h2> There were countless bugs due to PrismAPI in PatchOS, but George Fence did not give up and continued to fix the bugs.</h2>
</div>
</div>
<div class="end">
<p>PatchWare 2024</p>
</div>
</body>
</html>
Binary file added banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added banner5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bgwallpaper1.bmp
Binary file not shown.
Binary file added bgwallpaper2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<html>
<head>
<title>PatchWare</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="banner">
<div class="navbar">
<img src="logo.png" class="logo">
<ul>
<li><a href="index.html"><u>Home</u></a></li>
<li><a href="patchos.html">PatchOS</a></li>
<li><a href="#">Other</a></li>
<li><a href="#">Troubleshoot</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<div class="content">
<h1>MAKE YOUR LIFE BETTER</h1>
<p>just chilling</p>
<div>
<a href="patchos.html"><button type="button"><span></span>Check PatchOS</button></a>
<a href="about.html"><button type="button" ><span></span>About</button></a>
</div>
</div>
</div>
<div class="end">
<p>PatchWare 2024</p>
</div>
</body>
</html>
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion main.css

This file was deleted.

157 changes: 0 additions & 157 deletions main.html

This file was deleted.

Loading

0 comments on commit be00756

Please sign in to comment.