33 lines
441 B
CSS
33 lines
441 B
CSS
@charset "UTF-8";
|
|
/* CSS Document */
|
|
|
|
body{
|
|
background: rgba(136,136,136,0.56);
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
|
|
|
|
}
|
|
#wrapper1{
|
|
max-width: 400px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
p{
|
|
color: white;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
h1{
|
|
color: white;
|
|
font-family: inherit;
|
|
font-size: 32px;
|
|
}
|
|
a:visited{
|
|
color: white;
|
|
}
|
|
a:hover{
|
|
color: #6aaf08;
|
|
} |