You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inav-configurator/tabs/landing.css

249 lines
3.5 KiB
CSS

/* general layout */
.tab-landing {
min-height: 100%;
overflow: hidden;
}
.tab-landing .content_wrapper {
padding: 0;
min-height: 100%;
height: 100%;
overflow-y: auto;
9 years ago
background-color:#436c2c;
}
.tab-landing .content_top {
height: 120px;
9 years ago
background: #59aa29;
padding: 20px;
}
.tab-landing .content_mid {
background-color:#eaeaea;
overflow: hidden;
}
.tab-landing .content_foot {
clear: both;
padding: 20px;
}
/* hero block */
.tab-landing .logowrapper {
margin-left:auto;
margin-right:auto;
width:800px;
color:white;
font-size:14px;
font-family: 'open_sanslight', Arial;
}
.tab-landing .logowrapper img {
width:420px;
margin:5px;
}
.tab-landing .logowrapper span {
font-size:22px;
font-family: 'open_sanslight', Arial;
}
/* sponsors blocks */
.sponsors .title {
text-transform:uppercase;
font-size:10px;
9 years ago
}
.sponsors {
margin-left:auto;
margin-right:auto;
text-align:center;
color: silver;
}
.sponsors ul {
9 years ago
margin-top:5px;
}
.sponsors li {
display: inline-block;
margin-right:10px;
}
.sponsors li a {
border-radius:3px;
padding:2px;
padding-left:4px;
padding-right:4px;
font-size:13px;
9 years ago
line-height: 25px;
color:white;
font-weight:normal;
font-family: 'open_sanslight', Arial;
}
.sponsors li a:hover {
9 years ago
background-color:rgba(255,255,255,0.30);
color:#fff;
}
.text1, .text2, .text3 {
margin-top:15px;
margin-bottom:15px;
font-weight:normal;
font-family: 'open_sansregular', Arial;
font-size:12px;
}
/* text columns */
.tab-landing .content_mid .column .wrap {
9 years ago
padding: 15px;
padding-bottom: 0px;
padding-top: 0px;
}
.tab-landing .content_mid .column .wrap2 {
padding: 10px;
padding-bottom: 10px;
padding-top: 10px;
}
.tab-landing .content_mid h2,
.tab-landing .content_mid h3 {
9 years ago
margin-bottom: 5px;
font-size:13px;
}
.tab-landing .content_mid h3 {
font-size: 12px;
}
.tab-landing .content_mid .text1 .wrap {
margin-left:10px;
}
.tab-landing .content_mid .text1 {
width:37%;
}
.tab-landing .content_mid .text2 {
width:39%;
}
9 years ago
.tab-landing .content_mid .text2 ul {
margin-top: 10px;
}
9 years ago
.tab-landing .content_mid .text2 li {
padding: 5px 0;
9 years ago
border-top: 1px dotted silver;
}
.tab-landing .content_mid .text3 {
width:24%;
}
9 years ago
.tab-landing .content_mid .text3 .wrap2 {
border: 1px solid silver;
border-radius: 5px;
background: white;
margin-right: 30px;
9 years ago
margin-left:20px;
margin-top: 5px;
9 years ago
min-height: 200px;
font-size: 11px;
}
9 years ago
.tab-landing .content_mid .text3 .donate {
margin-top: 10px;
9 years ago
text-align:center;
}
/* changelog block */
#changelog {
width: 250px;
height: 100%;
position: fixed;
right: -245px;
top: 0px;
}
#changelog .wrapper {
height: 100%;
padding: 0 20px;
border-left: 5px solid green;
overflow-y: auto;
display: none;
}
#changelog .button {
transform: rotate(270deg);
top: 50px;
right: 211px;
position: absolute;
background: white;
border: 5px solid green;
border-radius: 10px 10px 0 0;
border-bottom: none;
}
#changelog .button a {
display: block;
padding: 5px 10px;
width: 70px;
text-align: center;
}
#changelog .title {
margin: 20px 0;
font-size: 16px;
}
#content.log_open #changelog {
right: 0px;
background: white;
}
#content.log_open #changelog .wrapper {
display: block;
}
/* changelog content */
#changelog .log {
line-height:17px;
}
#changelog .log span {
display: block;
font-weight: bold;
padding-bottom: 5px;
border-bottom:1px solid #ddd;
}
#changelog .log ul {
margin: 5px 0 20px 10px;
}
#changelog .log li {
font-weight: normal;
margin-bottom:5px;
}
#changelog .log p {
margin-bottom: 20px;
}