mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
53 lines
890 B
CSS
53 lines
890 B
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/. */
|
|
|
|
|
|
html {
|
|
font-family: Roboto,"Droid Sans",helvetica,arial,clean,sans-serif;
|
|
font-size: 18px;
|
|
background-image: url("chrome://browser/skin/images/about-bg-lightblue.png");
|
|
-moz-text-size-adjust: none;
|
|
}
|
|
|
|
#main-container {
|
|
margin: 1em;
|
|
padding: 1em;
|
|
border-radius: 10px;
|
|
border: 1px solid grey;
|
|
background-color: white;
|
|
}
|
|
|
|
.spacer {
|
|
clear: both;
|
|
}
|
|
|
|
.app {
|
|
float: left;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
margin: 1em;
|
|
width: 70px;
|
|
height: 85px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.app img {
|
|
width: 64px;
|
|
height: 64px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app div {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#noapps {
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|