1234567891011121314151617181920212223242526272829303132333435363738 |
- html, body {
- height: 100%;
- }
- #midaswiki-wrap {
- min-height: 100%;
- }
- #midaswiki-main {
- overflow: auto;
- padding-bottom: 100px;
- } /* must be same height as the footer */
- #midaswiki-footer {
- position: relative;
- margin-top: -100px; /* negative value of footer height */
- height: 100px;
- clear: both;
- text-align: center;
- }
- #midaswiki-edit {
- min-height: 300px;
- }
- #content ul {
- list-style-position: outside;
- display: block;
- -webkit-margin-before: 1em;
- -webkit-margin-after: 1em;
- -webkit-margin-start: 0px;
- -webkit-margin-end: 0px;
- -webkit-padding-start: 40px
- }
- #content ul li {
- list-style-type: disc;
- }
|