mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
60 lines
959 B
CSS
60 lines
959 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: message-box;
|
|
font-size: 15px;
|
|
font-weight: normal;
|
|
margin: 0;
|
|
height: 100%;
|
|
color: #737980;
|
|
background-color: #ededed;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-image: linear-gradient(#fff, #ededed 100px);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5em;
|
|
font-weight: lighter;
|
|
line-height: 1.2;
|
|
margin: 0;
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
#controls {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
}
|
|
|
|
#controls > a {
|
|
color: #4C9ED9;
|
|
font-size: small;
|
|
cursor: pointer;
|
|
border-bottom: 1px dotted;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
table {
|
|
font-family: monospace;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th, td {
|
|
padding: 5px;
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
th {
|
|
min-width: 130px;
|
|
}
|
|
|
|
th:first-of-type, td:first-of-type {
|
|
text-align: left;
|
|
}
|