37 lines
528 B
CSS
37 lines
528 B
CSS
body {
|
|
background-color: gray;
|
|
color: white;
|
|
}
|
|
|
|
.logo img {
|
|
width: 10%
|
|
}
|
|
|
|
div {
|
|
margin-right: 10%;
|
|
margin-left: 10%;
|
|
margin-top: 2%;
|
|
margin-bottom: 2%;
|
|
padding: 10%;
|
|
padding-top: 5%;
|
|
padding-bottom: 5%;
|
|
border-color: black;
|
|
border-style: double;
|
|
border-radius: 3%;
|
|
background-color:dimgray;
|
|
}
|
|
|
|
a {
|
|
padding: 2%;
|
|
background-color: aqua;
|
|
text-decoration: none;
|
|
border-radius: 25%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 300%;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: lightgreen;
|
|
} |