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 Achievements.css #36

Closed
Closed
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
17 changes: 10 additions & 7 deletions css/Achievements.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* Set background color */

body {
background-color: #f4f4f4;
}

/* Style for top logo */
#top-left {
Expand Down Expand Up @@ -38,9 +40,9 @@

/* Style for blocks */
.block {
width: 30%;
height: 500px;
margin: 20px;
width: 90%;
height: auto;
margin: 20px auto;
display: inline-block;
background-color: #3b67ad; /* blue */
color: #fff; /* white */
Expand Down Expand Up @@ -79,7 +81,7 @@
/* container divs for the first row of blocks */
.row1 {
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
background-color: #222020;
padding: 20px;
Expand All @@ -89,7 +91,7 @@
/* container divs for the second row of blocks */
.row2 {
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
background-color: #222020;
padding: 20px;
Expand All @@ -98,14 +100,15 @@

/* individual block divs */
.block {
width: 30%;
width:auto;
background-color: #1d5765;
padding: 20px;
color: white;
text-align: center;
font-size: 18px;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
margin-bottom:1em;
}

.block h2{
Expand Down