mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1faba762df
--HG-- extra : rebase_source : 147cbcc250e0a34055b6fd9520a0c8b377543b2d
72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
/* 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/. */
|
|
|
|
body {
|
|
font-family: Roboto,"Droid Sans",helvetica,arial,clean,sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
body.normal .showPrivate,
|
|
body.private .showNormal {
|
|
display: none;
|
|
}
|
|
|
|
div.contentSection {
|
|
width: 92%;
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
body.private {
|
|
color: #9ba3ab;
|
|
background-color: #292c29;
|
|
}
|
|
|
|
body.normal {
|
|
color: #222;
|
|
background-color: #ced7de;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
font-weight: 100;
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
body.private h1 {
|
|
color: #d06bff;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
width: 125px;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@media all and (max-height: 399px) {
|
|
body {
|
|
margin-top: 25px;
|
|
}
|
|
}
|
|
|
|
@media all and (min-height: 400px) and (max-height: 599px) {
|
|
body {
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
|
|
@media all and (min-height: 600px) and (max-height: 799px) {
|
|
body {
|
|
margin-top: 150px;
|
|
}
|
|
}
|
|
|
|
@media all and (min-height: 800px) {
|
|
body {
|
|
margin-top: 250px;
|
|
}
|
|
}
|