orbit-basic/app/assets/stylesheets/content.css.erb

230 lines
4.1 KiB
Plaintext
Raw Normal View History

2011-11-16 10:34:54 +00:00
html, body{
height: 100%;
2011-11-16 10:34:54 +00:00
margin: 0;
padding: 0;
2011-08-25 00:07:18 +00:00
}
html{
2011-11-16 10:34:54 +00:00
background: url(<%= asset_path "body.jpg" %>) no-repeat scroll 0 0 transparent;
background-size: cover;
2011-08-25 00:07:18 +00:00
}
body{
color: #000000;
font-family: helvetica,arial,sans-serif;
margin: 0;
padding: 0;
}
2011-08-25 07:08:23 +00:00
#panel_banner_link{
2011-11-16 10:34:54 +00:00
background: url(<%= asset_path "orbitbar.png" %>) repeat-x scroll 0 0;
height: 52px;
left: 0;
position: absolute;
top: 0;
width: 100%;
2011-08-25 00:07:18 +00:00
}
.hmenu{
height: 40px;
position: absolute;
right: 0;
top: 1px;
width: 250px;
}
2011-11-16 10:34:54 +00:00
#orbit{
background: url(<%= asset_path "bar_orbit.png" %>) no-repeat scroll 0 0 transparent;
cursor:pointer;
height: 43px;
left: 10px;
position: relative;
width: 41px;
}
#orbit:hover{
background-position:0 -43px;
box-shadow: 0 3px 3px #000000;
}
#orbit:hover #orblist{
display:block;
}
#orblist{
background: none repeat scroll 0 0 #FFFFFF;
border-radius: 0 3px 3px 3px;
box-shadow: 0 3px 3px #000000;
display: none;
margin: 0;
padding: 10px;
position: absolute;
top: 43px;
width: 130px;
z-index:10;
}
#orblist li{
border-bottom:1px solid #aaa;
list-style:none;
}
.orblink{
color: #333333;
display: block;
font: 12px/100% arial,sans-serif;
padding: 5px;
text-decoration: none;
}
.orblink:hover{
background:#eee;
color:#333;
}
2011-08-25 00:07:18 +00:00
#log_out a{
background: url(<%= asset_path "service_btn.png" %>) no-repeat scroll right 0 transparent;
border: medium none !important;
display: block !important;
height: 40px !important;
line-height: normal !important;
padding: 0 !important;
position: absolute;
right: 0px;
text-indent: -10000px;
top: 0px;
width: 43px !important;
}
#log_out a:hover{
background: url(<%= asset_path "service_btn.png" %>) no-repeat scroll right bottom transparent !important;
}
.lang{
color: #FFFFFF;
font-size: 15px;
line-height: 40px;
position: absolute;
right: 55px;
top: 0;
}
.lang a{
color:#fff;
text-decoration:none;
}
.lang a:hover{
text-decoration:underline;
}
2011-08-25 07:08:23 +00:00
#panel_container{
2011-11-16 10:34:54 +00:00
height: 100%;
2011-08-25 00:07:18 +00:00
}
2011-11-16 10:34:54 +00:00
2011-08-25 07:08:23 +00:00
#panel_container h1{
2011-08-25 00:07:18 +00:00
font: 28px/100% helvetica,arial,sans-serif;
margin: 0 0 20px;
padding: 0;
}
2011-08-25 07:08:23 +00:00
#panel_header{
2011-08-25 00:07:18 +00:00
background: none repeat scroll 0 0 #F1F1F1;
border-bottom: 1px solid #818181;
padding: 10px;
}
2011-08-25 07:08:23 +00:00
#panel_header:after {
2011-08-25 00:07:18 +00:00
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#panel_header #panel_nav{
2011-08-25 00:07:18 +00:00
margin:0;
padding:0;
2011-08-25 07:44:51 +00:00
width:100%;
2011-08-25 00:07:18 +00:00
}
#panel_header #panel_nav li{
2011-08-25 00:07:18 +00:00
float: left;
list-style: none outside none;
}
#panel_header #panel_nav li a{
2011-08-25 00:07:18 +00:00
background: none repeat scroll 0 0 #fff;
border-radius: 13px 13px 13px 13px;
border: 1px solid #D6D6D6;
color: #000000;
float: left;
2011-08-25 07:08:23 +00:00
font-size:15px;
2011-08-25 00:07:18 +00:00
margin: 0 20px 0 0;
padding: 5px 10px;
text-decoration: none;
}
#panel_header #panel_nav li a:hover{
2011-08-25 00:07:18 +00:00
background: none repeat scroll 0 0 #818181;
border-radius: 13px 13px 13px 13px;
color: #fff;
}
2011-08-25 07:08:23 +00:00
#panel_content{
2011-11-16 10:34:54 +00:00
height: 100%;
2011-08-25 00:07:18 +00:00
}
2011-11-16 10:34:54 +00:00
#panel_sidebar2{
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
box-shadow: 3px 0 3px #000000;
float: left;
height: 100%;
width: 16%;
2011-08-25 00:07:18 +00:00
}
#panel_sidebar{
2011-11-16 10:34:54 +00:00
padding: 62px 0 0;
2011-08-25 00:07:18 +00:00
}
#panel_sidebar ul{
2011-11-16 10:34:54 +00:00
background: none repeat scroll 0 0 #13547C;
2011-08-25 00:07:18 +00:00
margin: 0;
2011-11-16 10:34:54 +00:00
padding: 0 0 0 10px;
2011-08-25 00:07:18 +00:00
}
#panel_sidebar ul li{
2011-11-16 10:34:54 +00:00
background: none repeat scroll 0 0 #13547C;
border-top: 1px solid #145B87;
color: #FFFFFF;
font-size: 11px;
line-height: 29px;
2011-08-25 00:07:18 +00:00
list-style: none outside none;
}
#panel_sidebar li ul{
}
2011-08-25 07:44:51 +00:00
#panel_sidebar li ul ul{
}
2011-08-25 00:07:18 +00:00
#panel_sidebar a{
color: #FFFFFF;
2011-11-16 10:34:54 +00:00
font-size: 11px;
2011-08-25 00:07:18 +00:00
text-decoration: none;
}
#panel_sidebar a:hover{}
2011-11-16 10:34:54 +00:00
#panel_main2{
background:#fff;
float: left;
height: 100%;
padding: 0 1%;
width: 82%;
}
2011-08-25 00:07:18 +00:00
#panel_main{
2011-11-16 10:34:54 +00:00
padding: 62px 0 0;
2011-08-25 07:08:23 +00:00
}
#panel_main p label{
2011-11-16 10:34:54 +00:00
display: block;
2011-08-25 07:08:23 +00:00
padding: 3px;
}
#panel_main .translation_missing{
float: left;
padding: 3px;
width: 100px;
}
.text{
border: 1px solid #818181;
border-radius: 3px 3px 3px 3px;
font: 12px/100% helvetica,arial,sans-serif;
padding: 3px;
width: 205px;
}