mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
80 lines
1.3 KiB
CSS
80 lines
1.3 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/. */
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.header {
|
|
color: black;
|
|
padding: 15px 0px 0px;
|
|
-moz-padding-start: 25px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
border-bottom: 2px solid;
|
|
min-height: 44px;
|
|
-moz-border-bottom-colors: #ff9100 #f27900;
|
|
position: relative;
|
|
}
|
|
|
|
.header > .icon {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 15px;
|
|
}
|
|
|
|
.app:active,
|
|
.header > .icon:active {
|
|
background-color: #febc2b;
|
|
}
|
|
|
|
#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: 100px;
|
|
height: 121px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.app img {
|
|
width: 91px;
|
|
height: 91px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app div {
|
|
pointer-events: none;
|
|
}
|
|
|
|
#noapps {
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|