23 lines
369 B
CSS
23 lines
369 B
CSS
|
form{
|
||
|
width:100%;
|
||
|
margin-bottom:10px;
|
||
|
}
|
||
|
section{
|
||
|
width:90%;
|
||
|
min-height:700px;
|
||
|
margin:auto;
|
||
|
padding: 50px 20px 20px 20px;
|
||
|
margin-bottom:-5px;
|
||
|
background-color: #839496;
|
||
|
}
|
||
|
form a{
|
||
|
color: white;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
form a:visited, section a:visited{
|
||
|
color: rgb(219, 219, 219);
|
||
|
}
|
||
|
form a:hover, section a:hover{
|
||
|
font-weight: normal;
|
||
|
}
|