Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHellishPandaa authored Dec 31, 2024
1 parent 58ad1e7 commit 1244b96
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,55 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GNU-PasswdManager - Download</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
.download-button {
display: inline-block;
background-color: #28a745;
color: white;
padding: 15px 25px;
text-decoration: none;
font-size: 18px;
border-radius: 5px;
transition: background-color 0.3s ease;
margin-top: 15px;
}
.download-button:hover {
background-color: #218838;
}
.intro-text {
margin-top: 20px;
font-size: 18px;
line-height: 1.6;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
.download-section {
margin-top: 30px;
}
</style>
</head>
<body>
Expand Down

0 comments on commit 1244b96

Please sign in to comment.