mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
44 lines
615 B
CSS
44 lines
615 B
CSS
|
|
html {
|
|
font-family: "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;
|
|
}
|
|
|
|
#noapps {
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|