style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. @import url(http://fonts.googleapis.com/css?family=Roboto);
  2. html,body,h1,h2 {
  3. padding:0;
  4. margin:0;
  5. }
  6. html, button, input, textarea{
  7. font-family: 'Roboto', sans-serif;
  8. /*font-size:16px;*/
  9. }
  10. body{
  11. width:100%;
  12. background:#fafafa;
  13. }
  14. nav img{
  15. vertical-align: middle;
  16. margin-right: 5px;
  17. }
  18. nav dt:hover, nav dd:hover{
  19. background: #EEE;
  20. cursor: pointer;
  21. cursor: hand;
  22. }
  23. nav dt:not(:first-child){
  24. margin-top:3px;
  25. }
  26. nav a{
  27. color: black;
  28. text-decoration: none;
  29. }
  30. h3:first-child{
  31. margin-top: 0px;
  32. }
  33. h3{
  34. margin-bottom: 10px;
  35. }
  36. form button{
  37. border:none;
  38. background:none;
  39. }
  40. form button:hover{
  41. background: #EEE;
  42. }
  43. button:hover{
  44. cursor: pointer;
  45. cursor: hand;
  46. }
  47. #menu{
  48. background:#fafafa;
  49. width:240px;
  50. left:0;
  51. position:fixed;
  52. height:100%;
  53. box-shadow: 7px 0px 4px 0px rgba(0,0,0,0.15);
  54. }
  55. #menu>div{
  56. position: relative;
  57. height:100%
  58. }
  59. #menu>div>*{
  60. padding-left:10px;
  61. }
  62. #nav-container{
  63. position:fixed;
  64. top:64px;
  65. bottom:0;
  66. width:230px;
  67. overflow: auto;
  68. }
  69. #main{
  70. padding-left:240px;
  71. padding-top:64px;
  72. }
  73. #main>*{
  74. padding-left:20px !important;
  75. }
  76. #main-header{
  77. position: fixed;
  78. padding-left: 240px;
  79. left:0;
  80. right:0;
  81. box-shadow: 0 5px 10px rgba(249,249,249, 0.9);
  82. }
  83. #main-header .header>*{
  84. padding-left: 20px !important;
  85. }
  86. #content{
  87. padding:20px;
  88. }
  89. #buttons{
  90. position:fixed;
  91. bottom: 20px;
  92. right: 20px;
  93. left:240px;
  94. vertical-align: bottom;
  95. display: table-cell;
  96. }
  97. #buttons>table{
  98. width: 100%;
  99. }
  100. #buttons>table tr>td{
  101. vertical-align: bottom;
  102. }
  103. #buttons>table tr>td:last-child{
  104. text-align: right;
  105. }
  106. #buttons>table td>*:not(:first-child){
  107. margin-top:20px;
  108. }
  109. #buttons button{
  110. border-radius: 50%;
  111. display: inline-block;
  112. text-align: center;
  113. box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.25);
  114. vertical-align: middle;
  115. border:none;
  116. background:#F44336;
  117. width:40px;
  118. height:40px;
  119. color: white;
  120. font-size: 24px;
  121. line-height: 24px;
  122. }
  123. .header {
  124. height:64px;
  125. background:#F44336;
  126. color:white;
  127. white-space:nowrap;
  128. padding:0 !important;
  129. }
  130. .header>*{
  131. line-height:64px;
  132. font-size:24px;
  133. font-weight:400;
  134. float:left;
  135. padding-left: 10px;
  136. }
  137. .header>img{
  138. height:40px;
  139. margin-top:12px;
  140. }
  141. .header span{
  142. float:left;
  143. }
  144. .header span:not(:first-child):before{
  145. margin:2px 10px 0 10px;
  146. width:6px;
  147. float:left;
  148. height:62px;
  149. background: url("/images/chevron.png") no-repeat scroll right center / contain rgba(0, 0, 0, 0);
  150. content:"";
  151. }
  152. .circle{
  153. border-radius: 50%;
  154. display: inline-block;
  155. text-align: center;
  156. vertical-align: middle;
  157. }
  158. .go, .expand{
  159. display:none;
  160. padding-right:10px;
  161. float:right;
  162. }