Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
tanushac authored Dec 24, 2023
1 parent 36f79f1 commit 44ac547
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Projects</title>
<link rel="stylesheet" href="styles1.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Rubik+Doodle+Shadow&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<h1>My Web Dev Projects</h1>
<a href="https://tanushac.github.io/Amazon-Clone/"><button>Amazon Home Page Clone</button></a>
<a href="https://tanushac.github.io/virtual-pet-adoption-center/"><button>Virtual Pet Adoption Center</button></a>
<a href="https://tanushac.github.io/login-page/"><button>Login Page</button></a>
<a href="https://tanushac.github.io/personal-page/"><button>Resume Webpage with HTML CSS</button></a>
<a href="https://tanushac.github.io/cv/"><button>Resume Webpage with HTML</button></a>
</div>
</body>
</html>
70 changes: 70 additions & 0 deletions styles1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
html{
font-size: 12px;
}
body{
background: url("sunset-silhouettes-trees-mountains-generative-ai.jpg");
background-size: cover;
}
.main{
text-align: center;
display: flex;
flex-direction: column;
max-width: 40vw;
max-height: 70vh;
gap: 30px;
justify-content: center;
align-items: center;
margin: 10vh auto;
padding: 30px;
border: 1px solid white;
background-color: transparent;
backdrop-filter: blur(4px);
}
h1{
color: aliceblue;
font-family: Rubik Doodle Shadow;
font-size: 3rem;
font-weight: 900;
margin: 0;
}
button{
border-radius: 10px;
box-shadow: 0 0 20px black;
font-family: Poppins;
font-weight: 600;
color: rgb(19, 0, 95);
border: none;
font-size: 1.4rem;
width:20vw;
padding: 10px;
cursor: pointer;
transition: 0.9s;
overflow-wrap: break-word;
word-break: break-word;
margin-bottom: 16px;
border: none;
background-color: rgba(255, 255, 255, 0.8);
transition: transform .2s;
}
button:hover{
transform: scale(1.3);
}
@media screen and (max-width: 768px) {
.main {
max-width: 80vw;
}

button {
width: 40vw;
}
}

@media screen and (max-width: 480px) {
.main {
padding: 15px;
}

button {
width: 50vw;
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 44ac547

Please sign in to comment.