Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ITron-Legends authored Oct 10, 2024
1 parent c18a17a commit ea04ecf
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions mcr/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
body {
background-color: #222222;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

#rewardImage {
max-width: 200px;
margin-bottom: 20px;
}

#title {
color: #ffffff;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}

#loginButton,
#searchButton {
background-color: #007bff;
color: #ffffff;
border-radius: 10px;
padding: 10px 20px;
font-size: 16px;
border: none;
margin-bottom: 20px;
}

#codeBlock {
background-color: rgba(0, 0, 0, 0.7);
color: #ffffff;
padding: 20px;
font-family: monospace;
font-size: 14px;
white-space: pre-wrap;
overflow-x: auto;
width: 80%;
max-height: 200px;
border-radius: 10px;
}

0 comments on commit ea04ecf

Please sign in to comment.