1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Common layout styles */
/* They will define the common web site appearance */
body {
font-family: sans-serif;
font-size: 16px;
background-color: white;
}
div.content, body>div{
text-align: justify;
max-width: 1024px;
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Common layout styles */
/* They will define the common web site appearance */
body {
font-family: sans-serif;
font-size: 12pt;
background-color: white;
}
div.content, body>div{
text-align: justify;
max-width: 1024px;
|