Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Iamshadow-io authored Mar 21, 2024
1 parent 17f7b68 commit 9c1fac2
Showing 1 changed file with 22 additions and 10 deletions.
32 changes: 22 additions & 10 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
* {
margin: 0;
padding: 0;
font-family: "poppins", sans-serif;
font-family: jura,sans-serif;
text-transform: uppercase;
background-color: rgb(20, 20, 20);
}


.container {
border: 3px solid rgb(210, 208, 208);
border-radius: 5px;
margin-left: 20px;
margin-right: 20px;
margin-top: 80px;
padding-left: 20px;
}
Expand All @@ -22,8 +20,8 @@
}

.container input {
margin-left: 10px;
margin-right: 4px;
margin-left: 20px;
margin-right: 5px;
margin-top: 20px;
margin-bottom: 100px;
color: rgb(18, 18, 18);
Expand All @@ -40,22 +38,36 @@
border-radius: 2px;
}

@media (max-width: 330px) {
@media (max-width: 320px) {

.container {
border: none;
}

.container h1 {
font-size: 30px;
font-size: 25px;
}

.container input {
font-size: 15px;
margin-left: 10px;
margin-right: 5px;
margin-top: 20px;
margin-bottom: 100px;
color: rgb(18, 18, 18);
background-color: rgb(208, 208, 208);
padding:5px;
border: none;
border-radius: 2px;
font-size: 10px;
}

.container button {
font-size: 15px;
background-color: rgb(210, 50, 50);
padding:5px;
border: none;
border-radius: 2px;
font-size: 10px;
color: #fff;
}

}

0 comments on commit 9c1fac2

Please sign in to comment.