-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcoverstyle.css
More file actions
66 lines (58 loc) · 1.09 KB
/
coverstyle.css
File metadata and controls
66 lines (58 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
margin: 0;
padding: 0;
}
body {
font-style: normal;
font-family: Tahoma, Geneva, sans-serif;
background: #C0F9F9;
color: #404040;
padding: 0;
margin: 0;
background-image: url(clouds.jpg);
background-repeat: no-repeat;
}
div.content {
width: 960px;
margin: auto;
padding: 20px;
position: relative;
top: 30px;
font-family: Tahoma, Geneva, sans-serif;
background: #F9F9F9;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
h1 {
font-size: 2.0em;
color: #808080;
text-align: center;
}
h2 {
font-size: 1.5em;
color: #A0A0A0;
text-align: center;
padding: 1em;
}
p, li {
font-size: 0.9em;
margin-top: 0em;
margin-bottom: 1.5em;
text-align: justify;
}
ul {
margin-top: 0em;
list-style-position: inside;
}
li {
margin-bottom: 1.0em;
}
@media print, screen and (max-width: 980px) {
div.content {
width: 85%;
display: block;
position: relative;
}
}