summaryrefslogtreecommitdiffstats
path: root/skins/standard/index.css
blob: 62b7deb3f52d3745efa24e9f8cb63fa5f6ff5403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
 /* 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>
  *                 Guy Pyrzak <guy.pyrzak@gmail.com>
  */

/* index page (begin) */

    #page-index
    {
        margin: 50px 0;
        padding: 0.2em 0.2em 0.15em 0.2em;
        max-width: none;
    }

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

    /* Hide from NN4 */

    #new_release
    {
        border: 2px solid red;
        padding: 0.5em 1em;
        margin: 1em;
        font-weight: bold;
    }

    #new_release .notice
    {
        font-size: 80%;
        font-weight: normal;
    }

    #welcome-admin a
    {
        font-weight: bold;
    }

    #quicksearchForm
    {
        clear: both;
        text-align: center;
        margin-bottom: 2em;
    }

    #quicksearchForm #quicksearch_main
    {
        width: 27em;
    }

    #quicksearchForm
    {
        margin: 0;
        padding: 0;
    }

    #page-index table{
        border-collapse: collapse;
        margin: auto;
    }

    #welcome
    {
        font-size: x-large;
        font-weight: bold;
        text-align: center;
        margin: 0 0 0.8em 0;
        padding: 0;
    }

    #tiles {
      display: flex;
      margin: 32px 0;
      padding: 0;
      list-style-type: none;
    }

    #tiles li {
      flex: none;
      margin: 0;
      padding: 0;
    }

    #tiles a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      width: 160px;
      height: 160px;
    }

    #tiles a:hover,
    #tiles a:focus,
    #tiles a:active {
      background-color: rgba(0, 0, 0, .05);
      text-decoration: none;
    }

    #tiles span {
      display: block;
    }

    #tiles .icon {
      width: 120px;
      height: 120px;
      font-size: 120px;
      line-height: 120px;
      font-family: "Material Icons";
      color: #777;
    }

    #tile-docs .icon::before {
      content: "\E887";
    }

    #tile-search .icon::before {
      content: "\E8A0";
    }

    #tile-new-bug .icon::before {
      content: "\E89C";
    }

    #tile-prefs .icon::before {
      content: "\E8B8";
    }

    #tile-new-account .icon::before,
    #tile-login .icon::before {
      content: "\E853";
    }

    #tiles .label {
      margin-top: 4px;
      font-size: 14px;
      color: #555;
    }

    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;
    }

/* index page (end) */