index.css 2.68 KB
Newer Older
1 2 3 4 5 6 7
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This Source Code Form is "Incompatible With Secondary Licenses", as
 * defined by the Mozilla Public License, v. 2.0.
 */
8 9 10 11 12 13

/* index page (begin) */

    #page-index
    {
        padding: 0.2em 0.2em 0.15em 0.2em;
14
        max-width: 1000px;
15 16
    }

17 18 19 20 21 22
    /* By default these contain nothing, but these CSS rules make things
       easier on customizers. */
    .intro, .outro {
        text-align: center;
    }

23 24 25
    /* Hide from NN4 */

    #new_release
26
    {
27 28 29 30
        border: 2px solid red;
        padding: 0.5em 1em;
        margin: 1em;
        font-weight: bold;
31 32
    }

33
    #new_release .notice
34
    {
35 36
        font-size: 80%;
        font-weight: normal;
37 38
    }

39
    #welcome-admin a
40
    {
41
        font-weight: bold;
42
    }
43

44
    .bz_common_actions {
45 46 47 48 49 50 51 52 53 54 55 56
        text-align: center;
    }
    .bz_common_actions ul {
        list-style-type: none;
        padding: 0;
    }
    .bz_common_actions ul li {
        display: inline;
        vertical-align: top;
    }
    .bz_common_actions ul li a {
        display: inline-block;
57 58 59
        height: 170px;
        width: 145px;
        margin: 0 2ex 2em 0;
60
    }
61
    .bz_common_actions ul li a span {
62
        position: relative;
63
        top: 90%;
64
        font-weight: bold;
65
    }
66 67 68
    .bz_common_actions a,
    .bz_common_actions a:visited,
    .bz_common_actions a:hover {
69 70
        text-decoration: none;
    }
71 72 73 74 75 76
    #enter_bug { background: url(index/file-a-bug.png)     no-repeat; }
    #query     { background: url(index/search.png)  no-repeat; }
    #account   { 
      background: url(index/new-account.png) no-repeat; 
      margin-right: 0;
    }
77 78
    
    #quicksearchForm
79
    {
80 81 82
        clear: both;
        text-align: center;
        margin-bottom: 2em;
83
    }
84
    
85
    #quicksearchForm #quicksearch_main
86
    {
87
        width: 27em;
88
    }
89 90
    
    #quicksearchForm
91
    {
92 93 94 95 96 97
        margin: 0;
        padding: 0;
    }
    
    #page-index table{
        border-collapse: collapse;
98
        margin: auto;
99 100 101 102 103
    }
    
    #welcome
    {
        font-size: x-large;
104
        font-weight: bold;
105 106 107
        text-align: center;
        margin: 0 0 0.8em 0;
        padding: 0;
108
    }
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
    
    ul.additional_links 
    {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    ul#quicksearch_links{
        margin-bottom: 1em;
    }
    
    ul.additional_links li
    {
        display: inline;
    }
    
    ul.additional_links li.bz_default_hidden
    {
        display: none;
    }
    
    input.quicksearch_help_text
    {
        color: #ccc;
134
    }
135
/* index page (end) */