Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
KrishnaSSH authored Mar 11, 2024
1 parent 60a60ff commit 86213af
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@

#hamburger {
position: absolute;
top: 10px;
right: 10px;
font-size: 40px;
background-color: transparent;
border: none;
cursor: pointer;
}

nav {
position: absolute;
top: 65px;
right: 10px;
background-color: black;
padding: 10px;
border-radius: 10px;
display: none;
font-size: 30px;
left: 0;
box-sizing: border-box;
}

nav.show {
display: block;
}

nav ul {
list-style: none;
margin: 0;
padding: 0;
}

nav li {
margin-bottom: 5px;
}

nav a {
color: #ADBAC7;
text-decoration: none;
}

nav a:hover {
text-decoration: underline;
}



img{
border-radius: 50%;
max-width: 40%;
height: auto;
margin-left: 100px;
margin-right: 100px;

}

body{
font-family: 'Poppins', sans-serif;
color: #ADBAC7;
background-color: #22272E;
text-align: "center";
margin-top: 100px;
margin-left: 20px;
margin-right: 20px;
align-items: center;
box-sizing: border-box

}
a {
color: #318A62;
}

#ss {
border-radius: 0%;
display: flex;
justify-content: space-between;
}

0 comments on commit 86213af

Please sign in to comment.