40b657f993
Change-Id: I2f0c61006ef8885e157eb2b800080407f2bae393
233 lines
4.2 KiB
CSS
233 lines
4.2 KiB
CSS
/* @override http://docs.openstack.org/common/css/homepage.css */
|
|
|
|
body.homepage #header h1 {
|
|
display: none;
|
|
}
|
|
|
|
body.homepage #header {
|
|
background: white;
|
|
text-align: center;
|
|
}
|
|
|
|
body.homepage #header img {
|
|
display: inline;
|
|
margin: auto;
|
|
float: none;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.bookCatalog {
|
|
-webkit-box-shadow: inset 0px 1px 2px 0px #bdd1e5;
|
|
-moz-box-shadow: inset 0px 1px 2px 0px #bdd1e5;
|
|
background-color: #f3f9fc;
|
|
padding: 20px;
|
|
width: 800px;
|
|
margin: auto;
|
|
border: 1px solid #b9c6c6;
|
|
}
|
|
|
|
.bookSet {
|
|
float: left;
|
|
width: 400px;
|
|
}
|
|
|
|
.bookSet h1{
|
|
text-align: center;
|
|
}
|
|
|
|
.bookBox ul {
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0px;
|
|
}
|
|
|
|
.bookBox li {
|
|
display: block;
|
|
float: left;
|
|
text-align: center;
|
|
}
|
|
|
|
.bookSet li a {
|
|
text-decoration: none;
|
|
color: #2b3f4c;
|
|
}
|
|
|
|
.bookSet li a span.icon {
|
|
display: block;
|
|
padding-top: 190px;
|
|
background: no-repeat;
|
|
-webkit-background-size: 80%;
|
|
margin-bottom: -10px;
|
|
}
|
|
|
|
#compute.bookSet li.devGuide a span.icon {
|
|
background: url(../images/compute-dev-guide.png) no-repeat;
|
|
}
|
|
|
|
#storage.bookSet li.devGuide a span.icon {
|
|
background: url(../images/storage-dev-guide.png) no-repeat;
|
|
}
|
|
|
|
#compute.bookSet li.adminGuide a span.icon {
|
|
background: url(../images/compute-admin.png) no-repeat;
|
|
}
|
|
|
|
#storage.bookSet li.adminGuide a span.icon {
|
|
background: url(../images/storage-admin.png) no-repeat;
|
|
}
|
|
|
|
.bookSet li a:hover span.icon {
|
|
display: block;
|
|
padding-top: 190px;
|
|
-webkit-background-size: 100%;
|
|
-webkit-transition:background-size 0.2s ease-out;
|
|
z-index: 1001;
|
|
-webkit-transform: rotate(9deg);
|
|
}
|
|
|
|
.bookSet li a:hover {
|
|
color: black;
|
|
}
|
|
|
|
.bookSet li a span.label {
|
|
-webkit-border-radius: 20px;
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
.bookSet li a:hover span.label {
|
|
background: #618da9;
|
|
color: white;
|
|
}
|
|
|
|
.bookSet h1 {
|
|
color: black;
|
|
opacity: 0.5;
|
|
margin-left: -80px;
|
|
}
|
|
|
|
.bookRow {
|
|
margin: auto;
|
|
width: 800px;
|
|
}
|
|
|
|
.searchArea label {
|
|
display: block;
|
|
color: #618da9;
|
|
}
|
|
|
|
.searchArea {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 10px;
|
|
width: 500px;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
input.gsc-input, input#query {
|
|
padding: 10px;
|
|
background-color: #f1f8fa;
|
|
border: 1px solid #b9c6c6;
|
|
}
|
|
|
|
input#query {
|
|
width: 100%;
|
|
}
|
|
|
|
input.gsc-search-button {
|
|
margin-left: 10px!important;
|
|
}
|
|
|
|
div.bookBox {
|
|
float: left;
|
|
width: 330px;
|
|
margin-right: 40px;
|
|
padding: 8px;
|
|
background-color: #d1e9f3;
|
|
-webkit-border-radius: 6px;
|
|
}
|
|
|
|
/* @group Rounded Buttons */
|
|
|
|
a.roundedButton {
|
|
border: 1px solid #bfbfbf;
|
|
padding: 2px 15px;
|
|
color: #7c201b;
|
|
text-decoration: none;
|
|
font-size: 12px;
|
|
line-height: 3em;
|
|
background: #FFFFFF; /* old browsers */
|
|
background: -moz-linear-gradient(top, #FFFFFF 0%, #F3F3F3 50%, #EBEBEB 100%); /* firefox */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(50%,#F3F3F3), color-stop(100%,#EBEBEB)); /* webkit */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EBEBEB',GradientType=0 ); /* ie */
|
|
text-shadow: #fff 0px 1px 1px;
|
|
border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
a.roundedButton:active, input.action:active {
|
|
background: #ababab;
|
|
box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
border-color: #ababab;
|
|
border-top-color: #636363;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#bebebe), to(#dddddd));
|
|
background: -moz-linear-gradient(top, #bebebe, #eeeeee);
|
|
-webkit-transition:none;
|
|
padding: 2px 15px;
|
|
color: #black;
|
|
}
|
|
|
|
.bookBox img {
|
|
float: left;
|
|
margin-left: -20px;
|
|
margin-right: 10px;
|
|
width: 90px;
|
|
}
|
|
|
|
.bookBox h2 a {
|
|
text-decoration: none;
|
|
text-shadow: #fff 0px 1px 1px;
|
|
color: black;
|
|
}
|
|
|
|
div.bookRow h1 {
|
|
color: #33495d;
|
|
font-size: 13px;
|
|
margin-top: 0px;
|
|
margin-left: -40px;
|
|
margin-bottom: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
div.bookRow {
|
|
margin-bottom: 30px;
|
|
margin-left: 40px;
|
|
}
|
|
|
|
div.searchArea h1 {
|
|
color: grey;
|
|
font-size: 14px;
|
|
margin-left: -40px;
|
|
}
|
|
|
|
div.searchArea table {
|
|
width: 100%;
|
|
}
|
|
|
|
div.footer {
|
|
border-top: 1px solid #DDDDDD;
|
|
clear: both;
|
|
margin: 1em 1.5em 0 242px;
|
|
padding: 0.5em 0;
|
|
}
|
|
|
|
div.footer p {
|
|
font-size: 11px;
|
|
}
|
|
|
|
/* @end */
|