-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.