40 lines
530 B
CSS
40 lines
530 B
CSS
body {
|
|
font-family: sans-serif;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
margin-top: 2ex;
|
|
margin-bottom: 3ex;
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
.note {
|
|
text-align: center;
|
|
font-size: x-small;
|
|
}
|
|
h1 {
|
|
color: #006699;
|
|
text-align: center;
|
|
border: 1px solid #dddddd;
|
|
background: #eeeeee;
|
|
margin-bottom: 3ex;
|
|
}
|
|
h2 {
|
|
margin-top: 2ex;
|
|
color: #006699;
|
|
}
|
|
p {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
}
|
|
ul {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
}
|
|
li {
|
|
margin-top: 0.5ex;
|
|
margin-bottom: 0.5ex;
|
|
}
|
|
tt {
|
|
background: #dddddd;
|
|
}
|