Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
fwldom committed Jul 2, 2024
1 parent f449030 commit 48ee473
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 18 deletions.
20 changes: 12 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,24 @@

<body>
<header class="navbar navbar-light bg-light">
<div id="logo">
<div id="logo">
<img src="ico.png" width="30" height="30" alt="">
<b style="margin-left: 5px;"> </b><b>Freedom Guard</b>
<b style="margin-left: 5px;"> </b><b>Freedom Guard</b>
</div>


<div id="links"> <a href="#AboutUs">About</a>
<a href="#Download">Download</a>
<a href="#ContactUs">Contact Us</a>
<a href="#Services">Services</a>
</div>
<button>Get App</button>
</header>
<div id="Home">
<p></p>
<img src="" alt="">
<button></button>
<p>Freedom Warp <br>Freedom Vibe <br> Freedom Get <br>All in <br> Freedom Guard</p>
<img src="ico.png" width="30%" style="border-radius: 50%;" alt="">
<a class="btn" href="#Download"><button>Get Freedom Guard</button></a>
</div>
<div id="Services"></div>
<div id="Download"></div>
<div id="Services"></div>
<div id="AboutUs"></div>
<div id="ContactUs"></div>
</body>
Expand Down
116 changes: 106 additions & 10 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,120 @@
* {
color: rgba(255, 255, 255, 0.8);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-decoration: none;
}

body {
position: fixed;
background-color: rgba(0, 0, 0, 1)
background-color: rgba(0, 0, 0, 1);
overflow: auto;
}

header {
min-width: 100vw;
position: sticky;
background-color: aliceblue;
min-width: 98vw;
/* position: sticky; */
background-color: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(50px);
display: flex;
height: 10vh;
border-radius: 15px;
justify-content: center;
align-items: center;
color: rgb(0, 0, 0)
color: rgb(0, 0, 0);
}
header > #logo {
margin-right:auto;

header>#logo {
flex: 1 0 20%;
justify-self: flex-start;
display: flex;
justify-content: center;
align-items: center;
margin: 10px;
font-size: 1em;
font-weight: bold;
color: rgb(0, 0, 0)
}
color: rgb(0, 0, 0);
}

header #links,
#links a {
font-size: 100%;
margin: 10px;
justify-self: flex-start;
flex: 1 1 50%;
display: flex;
gap: 10px;
text-decoration: none;
color: rgb(28, 38, 119);
margin-right: auto;
justify-content: space-around;
}

header>button {
flex: 1 0 20%;
margin-left: 10%;
height: 100%;
background-color: transparent;
border-radius: 15px;
border-left: none;
border-bottom: none;
border-top: none;
}

#Home {
height: 98vh;
width: 98vw;
background-color: #3332323d;
border-radius: 15px;
font-size: 2em;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}

.btn {
flex: 1 0 100%;
display: flex;
justify-content: center;
}

.btn button {
align-items: center;
background-clip: padding-box;
background-color: #fa6400;
border: 1px solid transparent;
border-radius: .25rem;
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-flex;
font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: 600;
justify-content: center;
line-height: 1.25;
margin: 0;
min-height: 3rem;
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
position: relative;
text-decoration: none;
transition: all 250ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: baseline;
width: auto;
}

#Download {
margin-top: 30px;
height: 98vh;
width: 98vw;
background-color: #3332323d;
border-radius: 15px;
font-size: 2em;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}

0 comments on commit 48ee473

Please sign in to comment.