123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- @import url(http://fonts.googleapis.com/css?family=Roboto);
- html,body,h1,h2 {
- padding:0;
- margin:0;
- }
- html{
- font-family: 'Roboto', sans-serif;
- }
- body{
- width:100%;
- background:#f9f9f9;
- }
- nav img{
- vertical-align: middle;
- margin-right: 5px;
- }
- nav dt:not(:first-child){
- margin-top:3px;
- }
- nav a{
- color: black;
- text-decoration: none;
- }
- #menu{
- background:#f9f9f9;
- width:240px;
- left:0;
- position:fixed;
- height:100%;
- box-shadow: 7px 0px 4px 0px rgba(0,0,0,0.15);
- }
- #menu>div{
- position: relative;
- height:100%
- }
- #menu>div>*{
- padding-left:10px;
- }
- #nav-container{
- position:fixed;
- top:64px;
- bottom:0;
- width:230px;
- overflow: auto;
- }
- #main{
- padding-left:240px;
- padding-top:64px;
- }
- #main>*{
- padding-left:20px !important;
- }
- #main-header{
- position: fixed;
- padding-left: 240px;
- left:0;
- right:0;
- box-shadow: 0 5px 10px rgba(249,249,249, 0.9);
- }
- #main-header .header>*{
- padding-left: 20px !important;
- }
- #content{
- padding:20px;
- }
- .header {
- height:64px;
- background:#F44336;
- color:white;
- white-space:nowrap;
- padding:0 !important;
- }
- .header>*{
- line-height:64px;
- font-size:24px;
- font-weight:400;
- float:left;
- padding-left: 10px;
- }
- .header>img{
- height:40px;
- margin-top:12px;
- }
- .header span{
- float:left;
- }
- .header span:not(:first-child):before{
- margin:2px 10px 0 10px;
- width:6px;
- float:left;
- height:62px;
- background: url("/images/chevron.png") no-repeat scroll right center / contain rgba(0, 0, 0, 0);
- content:"";
- }
|