style.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. @import url(http://fonts.googleapis.com/css?family=Roboto);
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html,body,h1,h2, button {
  6. padding:0;
  7. margin:0;
  8. }
  9. html, button, input, textarea{
  10. font-family: 'Roboto', sans-serif;
  11. /*font-size:16px;*/
  12. }
  13. body{
  14. width:100%;
  15. background:#fafafa;
  16. }
  17. a {
  18. color:#f44336;
  19. }
  20. nav img{
  21. vertical-align: middle;
  22. margin-right: 5px;
  23. }
  24. nav dt:hover, nav dd:hover, nav dt.active, nav dd.active{
  25. background: #EEE;
  26. cursor: pointer;
  27. cursor: hand;
  28. }
  29. nav dt {
  30. padding: 10px 10px;
  31. }
  32. nav dd {
  33. margin: 0;
  34. padding: 10px 10px 10px 40px;
  35. }
  36. nav a{
  37. color: black;
  38. text-decoration: none;
  39. }
  40. h2{
  41. margin-bottom:10px;
  42. }
  43. h2 a{
  44. color:inherit;
  45. }
  46. h3:first-child{
  47. margin-top: 0px;
  48. }
  49. h3{
  50. margin-bottom: 10px;
  51. }
  52. hr{
  53. border: 1px solid #eee;
  54. }
  55. table input[type=text], table textarea{
  56. width: 100%;
  57. }
  58. form button, form input[type=submit]{
  59. border:none;
  60. background:none;
  61. }
  62. form button:hover, form input[type=submit]:hover{
  63. background: #EEE;
  64. }
  65. button:hover{
  66. cursor: pointer;
  67. cursor: hand;
  68. }
  69. img{
  70. max-width: 100%;
  71. }
  72. p:first-child{
  73. margin-top: 0;
  74. }
  75. table{
  76. border-collapse: collapse;
  77. }
  78. th{
  79. text-align: left;
  80. }
  81. td, th{
  82. padding:0 10px 5px 0;
  83. vertical-align: top;
  84. }
  85. #menu{
  86. background:#fafafa;
  87. width:280px;
  88. left:0;
  89. position:fixed;
  90. height:100%;
  91. /*box-shadow: 7px 0px 4px 0px rgba(0,0,0,0.15);*/
  92. box-shadow: -2px 0px 0px 0px #eee inset;
  93. /*border-right: 2px solid #eeeeee;*/
  94. z-index: 400;
  95. overflow-x: hidden;
  96. }
  97. #menu .header{
  98. z-index: 401;
  99. }
  100. /*#menu>div{
  101. position: relative;
  102. height:100%
  103. }*/
  104. /*#menu>div>*{
  105. padding-left:10px;
  106. }*/
  107. #menu-button{
  108. display:none;
  109. }
  110. #nav-container{
  111. /*position:fixed;
  112. top:64px;
  113. bottom:0;
  114. width:270px;*/
  115. overflow: auto;
  116. width:100%;
  117. }
  118. #main{
  119. padding-left:280px;
  120. padding-top:64px;
  121. }
  122. #main>*{
  123. padding-left:20px !important;
  124. }
  125. #main-header{
  126. position: fixed;
  127. padding-left: 280px;
  128. left:0;
  129. right:0;
  130. z-index: 1;
  131. /*box-shadow: 0 5px 10px rgba(249,249,249, 0.9);*/
  132. }
  133. #main-header .header>*{
  134. padding-left: 20px !important;
  135. }
  136. #content{
  137. padding:20px;
  138. margin-bottom:60px;
  139. }
  140. #buttons{
  141. position:fixed;
  142. bottom: 20px;
  143. right: 20px;
  144. left:280px;
  145. vertical-align: bottom;
  146. }
  147. #buttons>table{
  148. width: 100%;
  149. }
  150. #buttons>table tr>td{
  151. vertical-align: bottom;
  152. padding:0;
  153. }
  154. #buttons>table tr>td:last-child{
  155. text-align: right;
  156. }
  157. #buttons>table td>*:not(:first-child){
  158. margin-top:20px;
  159. }
  160. #buttons button{
  161. border-radius: 50%;
  162. display: inline-block;
  163. text-align: center;
  164. box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.25);
  165. vertical-align: middle;
  166. border:none;
  167. background:#F44336;
  168. width:40px;
  169. height:40px;
  170. color: white;
  171. font-size: 24px;
  172. line-height: 24px;
  173. }
  174. #cookiePopup{
  175. position:absolute;
  176. background:black;
  177. top:50%;
  178. left:50%;
  179. padding:20px;
  180. border-radius: 30px;
  181. width:230px;
  182. height:230px;
  183. margin-top:-115px;
  184. margin-left:-115px;
  185. color:white;
  186. }
  187. #cookiePopup > div{
  188. margin-top:40px;
  189. text-align: center;
  190. }
  191. .header {
  192. height:64px;
  193. background:#F44336;
  194. color:white;
  195. white-space:nowrap;
  196. padding:0 !important;
  197. overflow: hidden;
  198. box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.8);
  199. }
  200. .header>*{
  201. line-height:64px;
  202. font-size:24px;
  203. font-weight:400;
  204. padding-left: 10px;
  205. white-space: nowrap;
  206. display: inline;
  207. vertical-align: middle;
  208. }
  209. .header>h2>span{
  210. display: inline-block;
  211. }
  212. .header>img{
  213. height:50%;
  214. }
  215. .header span{
  216. display: inline-block;
  217. }
  218. .header span:not(:first-child):before{
  219. margin:2px 10px 0 10px;
  220. width:6px;
  221. float:left;
  222. height:62px;
  223. background: url("/images/chevron.png") no-repeat scroll right center / contain rgba(0, 0, 0, 0);
  224. content:"";
  225. }
  226. .circle{
  227. border-radius: 50%;
  228. display: inline-block;
  229. text-align: center;
  230. vertical-align: middle;
  231. }
  232. .go, .expand{
  233. display:none;
  234. float:right;
  235. }
  236. .backdrop{
  237. background: rgba(0,0,0,0.5);
  238. width: 100%;
  239. height:100%;
  240. position:fixed;
  241. top:0;
  242. left:0;
  243. z-index:100;
  244. display:none;
  245. }
  246. .errors{
  247. background: url(/images/error.svg) no-repeat scroll 10px 10px #424242;
  248. margin:-20px;
  249. margin-bottom: 20px;
  250. padding:10px;
  251. padding-left:40px;
  252. color:#fff;
  253. }
  254. .errors ul{
  255. margin: 0;
  256. list-style: square;
  257. }
  258. .row{
  259. width:100%;
  260. clear:both;
  261. }
  262. .row>.col {
  263. width:100%;
  264. float:left;
  265. }
  266. .row.col-lg-1>.col{
  267. width:100%;
  268. }
  269. .row.col-lg-2>.col{
  270. width:50%;
  271. }
  272. .row.col-lg-3>.col{
  273. width:33.3333%;
  274. }
  275. .row.col-lg-4>.col{
  276. width:25%;
  277. }