Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
faizalzayd authored Jul 27, 2024
1 parent 1b6b5fd commit 9232b6e
Showing 1 changed file with 95 additions and 0 deletions.
95 changes: 95 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #000000;
}
nav ul {
list-style: none;
display: flex;
justify-content: left;

background-color: navyblue;
padding: 10px;
margin-top: 0;
margin-right: 0;
}

nav li {
margin: 0 10px;
}

nav a {
text-decoration: none;
color: #fff;
}
nav a:hover{
text-decoration: underline;
color: lightblue;

}
img{
width: 300px;
height: 300px;
float: right;
object-fit:contain;
border-radius: 50%;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;

}

header {
background-color: rgb(120, 4, 22);
color: #fff;
text-align: center;
padding: 50px 0;
}

header h1 {
margin: 0;
}

section {
padding: 40px 0;
}

section h2 {
color: rgb(120, 4, 22);
font-weight: 900;
}
section p{
color: bisque;
}

.project {
margin-bottom: 20px;
}
.social-icons {
display: flex;
justify-content: center;
margin-top: 20px;
}

.social-icons a {
display: inline-block;
margin: 0 10px;
}

.social-icons img {
width: 40px;
height: 40px;
border-radius: 50%;
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}

0 comments on commit 9232b6e

Please sign in to comment.