source: public/content/style.css

Last change on this file was 15069, checked in by Mark Evenson, 7 years ago

Formating release notes

  • Property svn:eol-style set to LF
File size: 2.9 KB
Line 
1body {
2    font-family: sans-serif;
3}
4
5div#main {
6    margin-left:auto;
7    margin-right:auto;
8    width: 80%;
9    max-width: 20cm;
10}
11
12div#title {
13    width: 80%;
14    margin-left: 12%;
15}
16
17.header {
18    text-align: center;
19    font-size: medium;
20    background-color: #3366ff;
21    color:  #ffffff;
22    border-radius: 1em;
23    border-width: 5px;
24    border-color:#002244;
25    padding: 1mm 1mm 1mm 5mm;
26    paddingleft: 10%;
27}
28
29.footer {
30    font-size: small;
31    font-style: italic;
32    text-align: right;
33    border-radius: 1em;
34    border-width: 2px;
35    border-color:#002244;
36    padding: 1mm 1mm 1mm 1mm;
37}
38
39.footer a:link, .footer a:visited {
40    font-weight: bold;
41
42    text-decoration: underline;
43}
44
45.footer a:hover { 
46    font-weight:bold; 
47    color:#002244; 
48    text-decoration:underline; 
49}
50
51.check {
52    font-size: x-small;
53    text-align:right;
54}
55
56.check a:link { 
57    font-weight:bold;
58    color:#a0a0ff;
59    text-decoration:underline; 
60}
61
62.check a:visited { 
63    font-weight:bold;
64    color:#a0a0ff;
65    text-decoration:underline; 
66}
67
68.check a:hover { 
69    font-weight:bold;
70    color:#000000;
71    text-decoration:underline; 
72}
73
74.summary-header {
75    font-size: 120%;
76    font-weight: bold;
77    color: white;
78    background-color:  #6699ff;
79    text-align: center 
80}
81
82.summary-header span {
83    font-weight: normal;
84    font-size: 80%;
85}
86
87/* "rn" meaning release notes */
88div.rn {
89    max-width:        20cm;
90    margin-top:    1cm;
91    margin-bottom: 1cm;
92    margin-left: 15%;
93    font-family: monospace;
94}
95div.rn dl {
96    width:      20cm;
97}
98div.rn dl dt {
99    border-radius: 1em;
100    font-family: sans-serif;
101    font-weight:       bold;
102    margin:         1cm;
103    background:        #3366ff;
104    color:             #fff;
105    padding-left:       1em;
106    padding-top:        0.3em;
107    padding-bottom:     0.3em;
108    border-top-left-radius: 1em;
109    border-bottom-right-radius: 0.5em;
110}
111div.rn dl dd {
112    margin-top: 1em;
113    margin-bottom: 1em;
114}
115
116td { 
117    font-size: 85%; 
118}
119dt { 
120    font-weight: bold 
121}
122dd dt { 
123    font-weight: bold; font-style: italic 
124}
125
126table.downloads {
127    color: black;
128    font-weight: bold;
129    font-size: larger;
130}
131
132table.downloads a {
133    font-weight: normal;
134    font-size:smaller;
135}
136
137table.downloads a.asc {
138    font-size: smaller;
139}
140
141td ul { 
142    margin:0;
143}
144
145td.summary-header { 
146    padding: .3em;
147    border-radius: .3em;
148}
149
150td.summary-header a:link, td.summary-header a:visited {
151    color: white;
152}
153
154div#left-bar {
155    float: left;
156    width: 10%;
157}
158div#left-menu {
159    background-color: #3366ff;
160    border-radius: 1em;
161    border-style: solid;
162    border-color: #999999;
163    float: left;
164    font-family: sans-serif;
165    font-size: smaller;
166}
167
168ul.menu-list  {
169    list-style: none;
170}
171
172ul.menu-list a:link, ul.menu-list a:visited {
173    font-weight: bold;
174    color: #ffffff;
175    text-decoration: underline;
176}
177
178ul.menu-list li {
179    padding: .3em;
180    margin-left: -40%;
181    font-size: smaller;
182}
Note: See TracBrowser for help on using the repository browser.