Day 14: Link Styling, button styling.
Link Styling
a{
color: brown;
}
a:hover{
color: blueviolet;
}
----------------------------------------------------------------------------
Button Styling
button{
background-color: gry;
font-size: 24px;
border-radius: 15px;
cursor: not-allowed;
width: 100%;
}
button:hover{
background-color: blue;
}
Comments
Post a Comment