43 lines
613 B
CSS
43 lines
613 B
CSS
body {
|
|
font-family:sans-serif;
|
|
font-size:12pt;
|
|
}
|
|
p {
|
|
font-family:serif;
|
|
}
|
|
a {
|
|
text-decoration:none;
|
|
color:#e12323;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline darkblue;
|
|
font-size: large;
|
|
color: blueviolet;
|
|
}
|
|
ul {
|
|
list-style:none;
|
|
}
|
|
hr {
|
|
border:0;
|
|
border-top:1px dotted #000;
|
|
}
|
|
|
|
.logo{
|
|
float:right;
|
|
}
|
|
|
|
body {
|
|
max-width: 800px;
|
|
left: 50%;
|
|
position: relative;
|
|
transform: translate(-50%,0%);
|
|
}
|
|
footer {
|
|
text-align:center;
|
|
font-size:0.7em;
|
|
padding-top:30px;
|
|
}
|
|
.copyleft {
|
|
transform:rotate(180deg);
|
|
display:inline-block;
|
|
}
|