Skip to content

Commit

Permalink
Upd
Browse files Browse the repository at this point in the history
  • Loading branch information
JustAundre authored Jan 25, 2024
1 parent b7a5b53 commit 23e1bbf
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 20 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<head>
<meta charset="UTF-8">
<title>∙ DarkerMode | Landing Page</title>
<link rel="stylesheet" href="https://raw.githubusercontent.com/ItsAundre/DarkerMode/main/style.css">
<link rel="stylesheet" href="style.css">
<link rel="script" href="script.js">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Comfortaa">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins">
</head>
Expand Down
46 changes: 27 additions & 19 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
body * {
display: flex;
position: relative;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
margin: 0px;
background: rgb(10, 10, 10);
font-family: "Comfortaa";
font-family: Comfortaa;
font-size: 16px;
}

Expand All @@ -20,48 +24,52 @@ body {
}

.topFooter {
display: flex;
position: fixed;
height: 10vh;
width: 100vw;
top: 0%;
background: rgb(10, 10, 10);
border-bottom-width: .5px;
border-bottom-style: solid;
border-bottom-color: rgb(15, 15, 15);
border-bottom: 0.5px solid rgb(15, 15, 15);
display: flex;
justify-content: center;
place-content: center;
align-items: center;
flex-direction: row;
align-content: center;
justify-content: space-evenly;
}

.homeButton {
margin: 2px;
padding-left: 2.5px;
padding-right: 2.5px;
padding-top: 1.25px;
padding-bottom: 1.25px;
padding: 1.25px 2.5px;
position: relative;
display: block;
border-radius: 1px;
width: fit-content;
color: white;
font-size: 4px;
background: linear-gradient(to top, rgb(10, 10, 10), rgba(100, 36, 255, .1));
background: linear-gradient(to top, rgb(10, 10, 10), rgba(100, 36, 255, 0.1));
}

.homeButton:hover {
transition: .1s ease-in-out;
background: linear-gradient(to top, rgb(10, 10, 10), rgba(100, 36, 255, 0.2));
cursor: pointer;
scale: 1.05;
}

.termsOfUse {
margin: 2px;
padding-left: 2.5px;
padding-right: 2.5px;
padding-top: 1.25px;
padding-bottom: 1.25px;
padding: 1.25px 2.5px;
position: relative;
display: block;
border-radius: 1px;
width: fit-content;
color: white;
font-size: 4px;
background: linear-gradient(to top, rgb(10, 10, 10), rgba(70, 50, 255, 0.1));
}
}

.termsOfUse:hover {
transition: .1 ease-in-out;
background: linear-gradient(to top, rgb(10, 10, 10), rgba(70, 50, 255, 0.2));
cursor: pointer;
scale: 1.05;
}

0 comments on commit 23e1bbf

Please sign in to comment.