Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
iakzs authored Apr 21, 2024
1 parent 90186c7 commit c2e100c
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions c/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
h1 {
font-family: 'Roboto', sans-serif;
color: #333;
text-align: center;
}

form {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
display: block;
margin-bottom: 8px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
color: #555;
}

input[type="text"],
input[type="color"],
select {
width: 100%;
padding: 8px;
margin-bottom: 16px;
border: 1px solid #ccc;
border-radius: 4px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
}

input[type="checkbox"] {
margin-right: 8px;
}

button {
display: block;
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
cursor: pointer;
}

0 comments on commit c2e100c

Please sign in to comment.