Skip to content

Commit

Permalink
added color and font size
Browse files Browse the repository at this point in the history
  • Loading branch information
BakhatBegum committed Jan 14, 2024
1 parent e71ccb7 commit df68d42
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions week-3/quote-generator/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,45 @@
body{
font-family:sans-serif;
font-size: 30px;
background-color: rgb(229, 187, 21);
background-color: rgb(187, 156, 156);
margin: 0;
padding: 0;

}

.layout{
background-color: white;
border: 6px solid ;
background-color: rgb(137, 94, 94);
margin-top: 200px;
width: 90%;
border-top-right-radius: 80px;
border-bottom-left-radius: 80px;
border-top-right-radius: 250px;
border-bottom-left-radius: 250px;
margin-left: 60px;
}
.content{
color: orange;
color: rgb(50, 32, 32);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.side{
color: orange;
color: rgb(50, 32, 32);;
display: flex;
flex-direction: column;
align-items: flex-end;
margin-right: 50px;
}
button{
font-size: 0.6em;
font-weight: bold;
padding: 15px 19px;
border: none;
background-color: orange;
color: white;
border-radius: 5px;
background-color: rgb(187, 156, 156);
color: rgb(57, 43, 43);
}
#check-box{
position: absolute;
margin-top: 80px;
}

0 comments on commit df68d42

Please sign in to comment.