index.css 2.74 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
 /* The contents of this file are subject to the Mozilla Public
  * License Version 1.1 (the "License"); you may not use this file
  * except in compliance with the License. You may obtain a copy of
  * the License at http://www.mozilla.org/MPL/
  *
  * Software distributed under the License is distributed on an "AS
  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  * implied. See the License for the specific language governing
  * rights and limitations under the License.
  *
  * The Original Code is the Bugzilla Bug Tracking System.
  *
  * Contributor(s): Vitaly Harisov <vitaly@rathedg.com>
14
  *                 Guy Pyrzak <guy.pyrzak@gmail.com> 
15 16 17 18 19 20 21 22 23
  */

/* index page (begin) */

    #page-index
    {
        padding: 0.2em 0.2em 0.15em 0.2em;
    }

24 25 26 27 28 29 30
    /* By default these contain nothing, but these CSS rules make things
       easier on customizers. */
    .intro, .outro {
        text-align: center;
        width: 50em;
    }

31 32 33
    /* Hide from NN4 */

    #new_release
34
    {
35 36 37 38
        border: 2px solid red;
        padding: 0.5em 1em;
        margin: 1em;
        font-weight: bold;
39 40
    }

41
    #new_release .notice
42
    {
43 44
        font-size: 80%;
        font-weight: normal;
45 46
    }

47
    #welcome-admin a
48
    {
49
        font-weight: bold;
50
    }
51
    
52 53
    .bz_common_actions {
        display: block;
54 55 56
        height: 190px;
        width: 195px;
        float: left;
57
        margin: 0 3ex 3em 0;
58
        text-align: center;
59
    }
60
    .bz_common_actions span {
61 62 63
        position: relative;
        top: 95%;
        font-weight: bold;
64
    }
65
    
66 67 68 69
    .bz_common_actions,
    .bz_common_actions:visited,
    .bz_common_actions:hover
    {
70 71
        text-decoration: none;
    }
72 73 74 75

    #enter_bug { background: url(index/bug.gif)     no-repeat; }
    #query     { background: url(index/search.gif)  no-repeat; }
    #account   { background: url(index/account.gif) no-repeat; }
76 77
    
    #quicksearchForm
78
    {
79 80 81
        clear: both;
        text-align: center;
        margin-bottom: 2em;
82
    }
83
    
84
    #quicksearchForm #quicksearch_main
85
    {
86
        width: 25em;
87
    }
88 89
    
    #quicksearchForm
90
    {
91 92 93 94 95 96 97 98 99 100 101
        margin: 0;
        padding: 0;
    }
    
    #page-index table{
        border-collapse: collapse;
    }
    
    #welcome
    {
        font-size: x-large;
102
        font-weight: bold;
103 104 105
        text-align: center;
        margin: 0 0 0.8em 0;
        padding: 0;
106
    }
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
    
    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;
132
    }
133
/* index page (end) */