Merge "registration: Only allow one extension to set a specific config setting"
[lhc/web/wiklou.git] / resources / src / mediawiki.special / mediawiki.special.userlogin.signup.css
1 /* Disable the underline that Vector puts on h2 headings, and bold them. */
2 .mw-ui-container h2 {
3 border: 0;
4 font-weight: bold;
5 }
6
7 /* Benefits column CSS to the right (if it fits) of the form. */
8 .mw-ui-container #userloginForm {
9 float: left;
10 /* Override the right margin of the form to give space in case a benefits
11 * column appears to the side. */
12 margin-right: 100px;
13 /* Override `.mw-body-content` to ensure useful, readable paragraphs */
14 line-height: 1.4;
15 }
16
17 .mw-createacct-benefits-container {
18 /* Keeps this column compact and close to the form, but tends to squish contents. */
19 float: left;
20 }
21
22 .mw-createacct-benefits-container h2 {
23 margin-bottom: 30px;
24 }
25
26 .mw-number-text.icon-edits {
27 /* @embed */
28 background: url( images/icon-edits.png ) no-repeat left center;
29 }
30
31 .mw-number-text.icon-pages {
32 /* @embed */
33 background: url( images/icon-pages.png ) no-repeat left center;
34 }
35
36 .mw-number-text.icon-contributors {
37 /* @embed */
38 background: url( images/icon-contributors.png ) no-repeat left center;
39 }
40
41 /*
42 * Special font for numbers in benefits, same as Vector's `@content-heading-font-family`.
43 * Needs an ID so that it's more specific than Vector's div#content h3.
44 */
45 #bodyContent .mw-number-text h3 {
46 color: #222;
47 margin: 0;
48 padding: 0;
49 font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
50 font-weight: normal;
51 font-size: 2.2em;
52 line-height: 1.2;
53 text-align: center;
54 }
55
56 /* Contains a “headlined” number and explanatory text, with space for an icon */
57 .mw-number-text {
58 display: block;
59 font-size: 1.2em;
60 color: #444;
61 margin-top: 1em;
62 /* 80px wide icon plus "margin" */
63 padding: 0 0 0 95px;
64 /* Matches max icon height, ensures icon emblem is visible */
65 min-height: 75px;
66 text-align: center;
67 }