Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Pankaj0038 authored Jul 3, 2024
1 parent 44e6c1a commit 4ed60a7
Show file tree
Hide file tree
Showing 3 changed files with 171 additions and 0 deletions.
57 changes: 57 additions & 0 deletions css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
body{
background-color: black;
}

.container{
width: 100%;
border: 1px solid white;
justify-content: center;
align-items: center;
border-radius: 5px;
background-color: black;
color: white;
height: 95vh;
}

#name{
display: flex;
margin-top: 1px;
align-items: center;
justify-content: center;
color: white;
}

h1{
font-size: 5rem;
font-family: "Space Mono",monospace;
}
nav {
width: 100%;height: 80px;
display: flex;
align-items: center;
justify-content: space-around;
}

nav a {
text-transform: uppercase;
text-decoration: none;
color: white;
font-weight: 900;
font-size: 17px;
position: relative;
}

nav a:before{
content: "";
position: absolute;
top:100%;
left:0%;
width:0%;
height: 2px;
border-bottom: 2px solid white;
transition: all 0.2s linear;
}

nav a:hover:before{
width: 100%;
}
57 changes: 57 additions & 0 deletions css/contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
body{
background-color: black;
}

.container{
width: 100%;
border: 1px solid white;
justify-content: center;
align-items: center;
border-radius: 5px;
background-color: black;
color: white;
height: 95vh;
}

#name{
display: flex;
margin-top: 1px;
align-items: center;
justify-content: center;
color: white;
}

h1{
font-size: 5rem;
font-family: "Space Mono",monospace;
}
nav {
width: 100%;height: 80px;
display: flex;
align-items: center;
justify-content: space-around;
}

nav a {
text-transform: uppercase;
text-decoration: none;
color: white;
font-weight: 900;
font-size: 17px;
position: relative;
}

nav a:before{
content: "";
position: absolute;
top:100%;
left:0%;
width:0%;
height: 2px;
border-bottom: 2px solid white;
transition: all 0.2s linear;
}

nav a:hover:before{
width: 100%;
}
57 changes: 57 additions & 0 deletions css/vuln.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
body{
background-color: black;
}

.container{
width: 100%;
border: 1px solid white;
justify-content: center;
align-items: center;
border-radius: 5px;
background-color: black;
color: white;
height: 95vh;
}

#name{
display: flex;
margin-top: 1px;
align-items: center;
justify-content: center;
color: white;
}

h1{
font-size: 5rem;
font-family: "Space Mono",monospace;
}
nav {
width: 100%;height: 80px;
display: flex;
align-items: center;
justify-content: space-around;
}

nav a {
text-transform: uppercase;
text-decoration: none;
color: white;
font-weight: 900;
font-size: 17px;
position: relative;
}

nav a:before{
content: "";
position: absolute;
top:100%;
left:0%;
width:0%;
height: 2px;
border-bottom: 2px solid white;
transition: all 0.2s linear;
}

nav a:hover:before{
width: 100%;
}

0 comments on commit 4ed60a7

Please sign in to comment.