source: public_html/style.css

Last change on this file was 15475, checked in by Mark Evenson, 3 years ago

public_html: more CSS futzing

  • Property svn:eol-style set to LF
File size: 3.6 KB
Line 
1body {
2    font-family: sans-serif;
3}
4
5div#main {
6    margin-left: 9em;
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-top: .2cm;
26    padding-bottom: .2cm;
27    margin: 1%;
28}
29
30.footer {
31    font-size: small;
32    font-style: italic;
33    text-align: right;
34    border-radius: 1em;
35    border-width: 2px;
36    border-color:#002244;
37    padding: 1mm 1mm 1mm 1mm;
38}
39
40.footer a:link, .footer a:visited {
41    font-weight: bold;
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:   9em;
93    font-family:   monospace;
94}
95
96div.rn h2 {
97    margin-left: 2em;
98}
99
100div.rn ul {
101    margin-left: -1em;
102}
103
104div.rn dl {
105    width:      20cm;
106}
107div.rn dl dt {
108    border-radius: 1em;
109    font-family: sans-serif;
110    font-weight:       bold;
111    margin:         1cm;
112    background:        #3366ff;
113    color:             #fff;
114    padding-left:       1em;
115    padding-top:        0.3em;
116    padding-bottom:     0.3em;
117    border-top-left-radius: 1em;
118    border-bottom-right-radius: 0.5em;
119}
120div.rn dl dd {
121    margin-top: 1em;
122    margin-bottom: 1em;
123}
124
125tr#requirements > td {
126    max-width: 7cm;
127}
128
129tr#requirements > td {
130    vertical-align: top;
131}
132
133tr#requirements > td > p {
134    margin-left: 1em;
135    margin-right: 1em;
136}
137
138td { 
139    font-size: 85%; 
140}
141
142dt { 
143    font-weight: bold 
144}
145
146dd dt { 
147    font-weight: bold;
148    font-style: italic 
149}
150
151td.summary-header {
152    border-radius: .3em;
153    padding-top: .4em;
154    padding-bottom: .4em;
155    padding-left: 1em;
156    padding-right: 1em;
157}
158
159table#main-table {
160    margin-top: 2em;
161    border-spacing: 1em;
162}
163
164table.downloads {
165    color: black;
166    font-weight: bold;
167    font-size: larger;
168    margin-top: 0em;
169    margin-bottom: 0em;
170}
171
172table.downloads td {
173    margin: 1em;
174    padding: .1em;
175}
176   
177
178table.downloads a {
179    font-weight: normal;
180    font-size:smaller;
181}
182
183table.downloads a.asc {
184    font-size: smaller;
185}
186
187td ul { 
188    margin:0;
189}
190
191p#capsule {
192    margin-left: 10%;
193    margin-right: 10%;
194    margin-top: 1em;
195    margin-bottom: 1em;
196    font-size: bigger;
197}
198
199
200td.summary-header a:link, td.summary-header a:visited {
201    color: white;
202}
203
204p#licensing {
205    margin-left: 5%;
206    margin-right: 5%;
207    margin-top: 1em;
208    margin-bottom: 1em;
209}
210
211div#left-bar {
212    float: left;
213    width: 10%;
214}
215div#left-menu {
216    color: white;
217    background-color: #3366ff;
218    border-radius: 1em;
219    border-style: solid;
220    border-color: #999999;
221    float: left;
222    font-family: sans-serif;
223    font-size: smaller;
224}
225
226ul.menu-list  {
227    list-style: none;
228}
229
230ul.menu-list a:link, ul.menu-list a:visited {
231    font-weight: bold;
232    color: #ffffff;
233    text-decoration: underline;
234}
235
236ul.menu-list li {
237    padding: .3em;
238    margin-left: -40%;
239    font-size: smaller;
240}
Note: See TracBrowser for help on using the repository browser.