Skip to content

Commit

Permalink
updated (issue #13)
Browse files Browse the repository at this point in the history
  • Loading branch information
aafrida committed Oct 4, 2023
1 parent a315bd0 commit 2340fc6
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,4 +305,46 @@ font-size: 56px;
font-size: x-large;
font-weight: bold;

}
}

/*
* Styling the Testimonial section
*/
#testimonial-heading {
color: white;
text-align: center;
padding-top: 20px;
font-size: 56px;
}
.container {
border: 2px rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.2);
border-radius: 5px;
padding: 16px;
margin: 16px 0
}
.container::after {
content: "";
clear: both;
display: table;
}
.container img {
float: left;
margin-right: 20px;
border-radius: 50%;
}
.container span {
font-size: 20px;
margin-right: 15px;
}
@media (max-width: 500px) {
.container {
text-align: center;
}
.container img {
margin: auto;
float: none;
display: block;
}
}

0 comments on commit 2340fc6

Please sign in to comment.