24 lines
358 B
CSS
24 lines
358 B
CSS
a {
|
|
color: hotpink;
|
|
}
|
|
a:link, a:visited {
|
|
background-color: #f44336;
|
|
color: white;
|
|
padding: 14px 25px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
a:hover, a:active {
|
|
background-color: red;
|
|
}
|
|
p {
|
|
color: #d7540e;
|
|
}
|
|
body {
|
|
background: #f367c4;
|
|
}
|
|
img{
|
|
width: 450px;
|
|
} |