Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
Fix some mistakes and add styling for the new buttons.
  • Loading branch information
rocky-rickaby10 authored Apr 19, 2024
1 parent 8ac96d5 commit f568a5c
Showing 1 changed file with 28 additions and 9 deletions.
37 changes: 28 additions & 9 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@

body {
font-family: Arial, Sans-Serif;
body{font-family:Arial,Sans-Serif;text-align:center;padding:25px}pre{font-family:Arial,Sans-Serif;white-space:pre-wrap;line-height:1.5}div.container{text-align:center;border:3px solid black;margin:auto;width:250px}ul.list{display:inline-block;text-align:left}.navigation-button{background-color:red;border:0;color:white;padding:15px 32px;text-align:center;text-decoration:none;display:inline-block;font-size:16px;font-weight:bold;cursor:pointer}.button{background-color:#04aa6d;border:0;color:white;padding:15px 32px;text-align:center;text-decoration:none;display:inline-block;font-size:16px;cursor:pointer}body {
font-family: Arial,Sans-Serif;
text-align: center;
padding: 25px;
}

a:link, a:visited {
color: #0000ee;
text-decoration: none;
}

pre {
font-family: Arial, Sans-Serif;
font-family: Arial,Sans-Serif;
white-space: pre-wrap;
line-height: 1.5;
}
Expand All @@ -27,3 +21,28 @@ ul.list {
display: inline-block;
text-align: left;
}

.navigation-button {
background-color: red;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
font-weight: bold;
cursor: pointer;
}

.button {
background-color: #04AA6D;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}

0 comments on commit f568a5c

Please sign in to comment.