Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update style.css #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 87 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,91 @@
list-style: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.main-content{
height: 1000px;
display: grid;
width: 90%;
grid-template-columns: 300px 700px;
/* background-color: red; */
}
.right-section{
background-color: skyblue;
}
.left-section{
background-color: rgb(61, 66, 92);
}

.left-content{
padding:1rem 1rem 1rem 1rem;
border: 2px black;
}

.profile-image{
display: block;
margin: auto;
align-items: center;
width: 60%;
border-radius: 30%;
border: 5px solid white;
}

/* Write CSS code below */
.name{
font-size: 1.2rem;
font-weight: 700;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.02px;
padding: 0.8rem 0.8rem 0.8rem 0.8rem ;
}

.designation{
font-size: 1rem;
padding-bottom: 0.5rem;
text-align: center;
text-transform: uppercase;
}

.description{
font-size: 0.75rem;
text-align: center;
padding: 1rem 1rem 1rem 1rem;

}

.skills{
font-size: 0.75rem;
text-align: center;
padding: 1rem 0.5rem 1rem 0.5rem;
text-transform: uppercase;
}

.skill-name{
font-size: 0.65rem;
font-weight: 0.65rem;
padding-bottom: 0.5rem;
text-align: left;
}

.progress-bar{
border: 1px white solid;
height: 4px;
background-color: black;
}

.right-main-content{
padding: 2rem 3rem 2rem 3rem;
}

.right-title{
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
letter-spacing: 1px;
padding: 0.5rem ;
}

@media screen and (max-width: 673px) {
.main-content {
grid-template-columns: repeat(1, 1fr);
}
}