Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored May 10, 2024
1 parent 57c9495 commit ae0d314
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/ui/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}

main {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
}

#content {
width: 100%;
max-width: 800px;
margin: 1rem 0;
padding: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
}

#controls {
margin-top: 1rem;
}

button {
background-color: #333;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 1rem;
padding: 0.5rem 1rem;
}

button:hover {
background-color: #555;
}

footer {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}

0 comments on commit ae0d314

Please sign in to comment.