Everything is horrible.

Change-Id: Id35180435716a269edb45cab286ec178e9dd7791
isekai
Isarra 9 years ago
parent 6056f7d586
commit a950d154b7

@ -211,8 +211,10 @@ class TimelessTemplate extends BaseTemplate {
<h3> <h3>
<label for="searchInput"><?php echo $this->getMsg( 'search' )->escaped() ?></label> <label for="searchInput"><?php echo $this->getMsg( 'search' )->escaped() ?></label>
</h3> </h3>
<?php echo $this->makeSearchInput( array( "id" => "searchInput" ) ) ?>
<?php echo $this->makeSearchButton( 'go', array( 'id' => 'searchGoButton', 'class' => 'searchButton' ) ) ?> <?php echo $this->makeSearchButton( 'go', array( 'id' => 'searchGoButton', 'class' => 'searchButton' ) ) ?>
<div id="searchInput-container">
<?php echo $this->makeSearchInput( array( "id" => "searchInput" ) ) ?>
</div>
<input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/> <input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/>
</form> </form>
<?php <?php

@ -158,22 +158,20 @@ input[type="submit"],
input[type="button"], input[type="button"],
button { button {
padding: .25em 1em .1em 1em; padding: .25em 1em .1em 1em;
border: solid 1px @blue-dark; border: solid 1px @grey;
border-bottom-width: @border; border-bottom-width: @border;
text-shadow: 0 -1px 0 @blue-dark; text-shadow: 0 -1px 0 @grey;
box-sizing: border-box; box-sizing: border-box;
border-radius: @radius; border-radius: @radius;
background: @blue; background: @background;
color: @text-inverse; color: @text;
font-weight: bold;
min-height: 30px; min-height: 30px;
&:active { &:active {
background: @blue-bright; background: @grey-bright;
border-color: @blue;
} }
&:hover { &:hover {
background: @blue-bright; background: @grey-bright;
} }
} }
textarea { textarea {
@ -183,13 +181,14 @@ textarea {
line-height: 1.3em; line-height: 1.3em;
} }
textarea#wpTextbox1 { textarea#wpTextbox1 {
border-color: @grey-bright; border-color: @grey;
} }
div.editOptions { div.editOptions {
padding: 1.25em 1.75em; padding: 1.25em 1.75em;
padding: 1em; padding: 1em;
border: solid @grey-bright; border: solid @grey;
border-width: 0 1px @border; border-width: 0 1px @border;
background: @background2;
.mw-summary label { .mw-summary label {
padding-left: 0; padding-left: 0;

@ -8,10 +8,15 @@ body {
margin: 0; margin: 0;
padding: 0; padding: 0;
color: @text; color: @text;
background: @background; background: @background2;
font-size: 1em; font-size: 1em;
line-height: 1.3; line-height: 1.3;
} }
#content {
background: @background;
}
/* Misc */
a { a {
text-decoration: none; text-decoration: none;
@ -48,4 +53,3 @@ a {
#p-personal h3 { #p-personal h3 {
.hidden; .hidden;
} }

@ -11,11 +11,82 @@
} }
#p-search, #p-search,
#content { #content {
margin-left: 14em; margin-left: 12em;
margin-right: 14em; margin-right: 12em;
} }
#mw-related-navigation, #mw-related-navigation,
#p-personal { #p-personal {
width: 12em; width: 12em;
float: right; float: right;
} }
#mw-header-container {
position: fixed;
width: 100%;
background: @foreground;
color: @text-inverse;
height: 3em;
border-bottom: solid @border @foreground2;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
/* BANNER */
#p-logo-text {
width: 10em;
text-align: center;
text-shadow: 0 -1px 0 @foreground2;
a {
color: @text-inverse;
font-family: @fonts-secondary;
font-variant: small-caps;
font-size: 1.75em;
display: block;
}
}
/* SEARCH */
#p-search {
box-shadow: inset 0 2px 2px 1px rgba(0, 0, 0, 0.1);
background: @background;
}
#searchInput-container {
margin: .5em 8em 0 0;
}
#searchInput {
border: none;
margin: 0;
width: 100%;
height: 2.25em;
padding-left: 1em;
box-shadow: none;
background: transparent;
}
#searchGoButton {
float: right;
width: 7.5em;
height: 2.25em;
border: none;
background: transparent;
}
/* CONTENT */
#content-container {
margin-top: 3em;
}
#content {
background: @background;
padding-top: 1em;
border: 1px @grey-bright;
border-style: none solid;
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.02);
overflow: hidden;
padding-right: 2em;
padding-left: 2em;
}

@ -2,6 +2,10 @@
@text: #013; @text: #013;
@background: #fff; @background: #fff;
@background2: #f3f3f3;
@foreground: #777;
@foreground2: #555;
@text-inverse: #fff; @text-inverse: #fff;
@link: @blue; @link: @blue;
@ -29,6 +33,7 @@
/* Flair */ /* Flair */
@fonts-secondary: 'Linux Libertine', 'Georgia', serif;
@fonts: 'Open Sans', 'Helvetica Neue', 'Arial', sans-serif; @fonts: 'Open Sans', 'Helvetica Neue', 'Arial', sans-serif;
@border: .2em; @border: .2em;
@radius: .2em; @radius: .2em;

Loading…
Cancel
Save