Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Harish-2003 authored Sep 26, 2024
1 parent 612eb5d commit 5655509
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

section {
padding: 20px;
margin: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#crypto-form {
margin-top: 20px;
}

input {
padding: 10px;
font-size: 16px;
margin-right: 10px;
}

button {
padding: 10px 15px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}

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

#price-result {
margin-top: 20px;
}

#price {
font-size: 24px;
color: #007BFF;
}

0 comments on commit 5655509

Please sign in to comment.