Skip to content

Commit

Permalink
Fix oppia#20497: Update button CSS in creator-guidelines page (oppia#…
Browse files Browse the repository at this point in the history
…21021)

Update button CSS in creator-guidelines page

Co-authored-by: Akhilesh Kr. <[email protected]>
  • Loading branch information
uday-kiran-001 and Akhilesh-max authored Oct 3, 2024
1 parent f431db7 commit 26ddeb5
Showing 1 changed file with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,29 @@
margin-left: 25px;
}
.playbook .oppia-about-buttons-container {
display: flex;
justify-content: space-evenly;
text-align: center;
}
.playbook .btn.oppia-about-button {
background-color: rgba(0, 0, 0, 0.3);
color: rgba(255, 255, 255, 1.0);
font-weight: 500;
letter-spacing: 0.7px;
margin: 0 auto 4%;
max-width: 80%;
min-width: 40%;
padding: 10px 30px;
text-transform: uppercase;
}
.playbook .btn.oppia-about-button:hover {
background-color: #fff;
color: #009688;
}
.playbook .oppia-about-extra-info {
background-color: #009788;
color: #fff;
height: 245px;
height: 160px;
width: 100%;
}

Expand All @@ -45,6 +62,15 @@
text-align: center;
}

@media(max-width: 1000px) {
.playbook .oppia-about-buttons-container {
flex-direction: column;
}
.playbook .btn.oppia-about-button {
min-width: 80%;
}
}

@media only screen and (min-width: 1400px) {
.playbook .oppia-about-extra-info {
height: 245px;
Expand Down

0 comments on commit 26ddeb5

Please sign in to comment.