frame.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. .nav
  2. {
  3. padding-left:0;
  4. margin:0;
  5. list-style:none;
  6. }
  7. .nav > li
  8. {
  9. position:relative;
  10. display:block;
  11. margin:0;
  12. padding:0;
  13. }
  14. .nav > li > a
  15. {
  16. position:relative;
  17. display:block;
  18. padding:10px 15px;
  19. line-height:1.4;
  20. outline:none;
  21. }
  22. .nav > li > a:hover,
  23. .nav > li > a:focus,
  24. .nav > li.active > a,
  25. .navbar-nav li.open a.dropdown-toggle
  26. {
  27. text-decoration:none;
  28. /*background-color:#eee;*/
  29. box-shadow:none;
  30. }
  31. .navbar {
  32. position: relative;
  33. height: 60px;
  34. /*margin-bottom:20px;*/
  35. border-bottom: solid 1px #e7e7e7;
  36. background: #f8f8f8;
  37. }
  38. .navbar-header
  39. {
  40. float:left;
  41. }
  42. .navbar-brand
  43. {
  44. float:left;
  45. padding:15px 15px;
  46. font-size:18px;
  47. line-height:20px;
  48. height:60px;
  49. width:200px;
  50. text-align:center;
  51. background:#e9e9e9;
  52. color:#777;
  53. }
  54. .navbar-brand:hover,
  55. .navbar-brand:focus
  56. {
  57. color:#777;
  58. text-decoration:none;
  59. }
  60. .navbar-brand img
  61. {
  62. display:block;
  63. }
  64. .navbar-nav
  65. {
  66. float:left;
  67. }
  68. .navbar-nav > li
  69. {
  70. float:left;
  71. height:60px;
  72. }
  73. .navbar-nav > li > a
  74. {
  75. padding-top: 15px;
  76. padding-bottom: 15px;
  77. color:#777;
  78. cursor:pointer;
  79. box-shadow:none;
  80. }
  81. .navbar-right
  82. {
  83. position:absolute;
  84. right:0;
  85. top:0;
  86. }
  87. .navbar-form
  88. {
  89. float:left;
  90. padding:8px 15px 0 15px;
  91. }
  92. .navbar-form .form-control
  93. {
  94. display:inline-block;
  95. vertical-align: middle;
  96. width:auto;
  97. }
  98. .caret
  99. {
  100. display:inline-block;
  101. width:0;
  102. height:0;
  103. margin-left:2px;
  104. vertical-align:middle;
  105. border-top:4px dashed;
  106. border-top: 4px solid \9;
  107. border-right: 4px solid transparent;
  108. border-left: 4px solid transparent;
  109. }
  110. .dropup,
  111. .dropdown
  112. {
  113. position:relative;
  114. }
  115. .dropdown-menu
  116. {
  117. position:absolute;
  118. left:0;
  119. top:50px;
  120. display:none;
  121. float:left;
  122. min-width:120px;
  123. font-size:14px;
  124. line-height:24px;
  125. padding:5px 0;
  126. margin:2px 0;
  127. text-align:left;
  128. list-style:none;
  129. border: 1px solid #ccc;
  130. border: 1px solid rgba(0, 0, 0, .15);
  131. background:#fff;
  132. border-radius:4px;
  133. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  134. z-index:2000;
  135. }
  136. .dropdown-header
  137. {
  138. display: block;
  139. padding: 3px 20px;
  140. font-size: 12px;
  141. line-height: 1.42857143;
  142. color: #777;
  143. white-space: nowrap;
  144. }
  145. .dropdown-menu > .divider
  146. {
  147. height:0;
  148. margin:9px 0;
  149. overflow:hidden;
  150. border-bottom:solid 1px #e5e5e5;
  151. }
  152. .dropdown-menu > li > a
  153. {
  154. display:block;
  155. padding:3px 20px;
  156. clear:both;
  157. color:#333;
  158. white-space:nowrap;
  159. outline:none;
  160. }
  161. .dropdown-menu > li > a:hover,
  162. .dropdown-menu > li > a:focus
  163. {
  164. color:#262626;
  165. text-decoration:none;
  166. background-color:#f5f5f5;
  167. }
  168. .dropdown-menu > .disabled > a,
  169. .dropdown-menu > .disabled > a:hover,
  170. .dropdown-menu > .disabled > a:focus
  171. {
  172. color:#777;
  173. text-decoration: none;
  174. cursor: not-allowed;
  175. background-color: transparent;
  176. background-image: none;
  177. }
  178. .open > .dropdown-menu
  179. {
  180. display:block;
  181. }
  182. .dropdown-menu.pull-right
  183. {
  184. left:auto;
  185. right:0;
  186. }
  187. .dropup > .dropdown-menu
  188. {
  189. top:auto;
  190. bottom:100%;
  191. margin-bottom:2px;
  192. }
  193. .tooltip {
  194. position: absolute;
  195. z-index: 1070;
  196. display: block;
  197. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  198. font-size: 12px;
  199. font-style: normal;
  200. font-weight: normal;
  201. line-height: 1.4;
  202. text-align: left;
  203. text-align: start;
  204. text-decoration: none;
  205. text-shadow: none;
  206. text-transform: none;
  207. letter-spacing: normal;
  208. word-break: normal;
  209. word-spacing: normal;
  210. word-wrap: normal;
  211. white-space: normal;
  212. filter: alpha(opacity=0);
  213. opacity: 0;
  214. line-break: auto;
  215. }
  216. .tooltip.in {
  217. filter: alpha(opacity=90);
  218. opacity: .9;
  219. }
  220. .tooltip.top{
  221. padding: 5px 0;
  222. margin-top: -3px;
  223. }
  224. .tooltip.right {
  225. padding: 0 5px;
  226. margin-left: 3px;
  227. }
  228. .tooltip.bottom {
  229. padding: 5px 0;
  230. margin-top: 3px;
  231. }
  232. .tooltip.left {
  233. padding: 0 5px;
  234. margin-left: -3px;
  235. }
  236. .tooltip-inner {
  237. max-width: 200px;
  238. padding: 3px 8px;
  239. color: #fff;
  240. text-align: center;
  241. background-color: #000;
  242. border-radius: 4px;
  243. }
  244. .tooltip-arrow {
  245. position: absolute;
  246. width: 0;
  247. height: 0;
  248. border-color: transparent;
  249. border-style: solid;
  250. }
  251. .tooltip.top .tooltip-arrow {
  252. bottom: 0;
  253. left: 50%;
  254. margin-left: -5px;
  255. border-width: 5px 5px 0;
  256. border-top-color: #000;
  257. }
  258. .tooltip.top-left .tooltip-arrow {
  259. right: 5px;
  260. bottom: 0;
  261. margin-bottom: -5px;
  262. border-width: 5px 5px 0;
  263. border-top-color: #000;
  264. }
  265. .tooltip.top-right .tooltip-arrow {
  266. bottom: 0;
  267. left: 5px;
  268. margin-bottom: -5px;
  269. border-width: 5px 5px 0;
  270. border-top-color: #000;
  271. }
  272. .tooltip.right .tooltip-arrow {
  273. top: 50%;
  274. left: 0;
  275. margin-top: -5px;
  276. border-width: 5px 5px 5px 0;
  277. border-right-color: #000;
  278. }
  279. .tooltip.left .tooltip-arrow {
  280. top: 50%;
  281. right: 0;
  282. margin-top: -5px;
  283. border-width: 5px 0 5px 5px;
  284. border-left-color: #000;
  285. }
  286. .tooltip.bottom .tooltip-arrow {
  287. top: 0;
  288. left: 50%;
  289. margin-left: -5px;
  290. border-width: 0 5px 5px;
  291. border-bottom-color: #000;
  292. }
  293. .tooltip.bottom-left .tooltip-arrow {
  294. top: 0;
  295. right: 5px;
  296. margin-top: -5px;
  297. border-width: 0 5px 5px;
  298. border-bottom-color: #000;
  299. }
  300. .tooltip.bottom-right .tooltip-arrow {
  301. top: 0;
  302. left: 5px;
  303. margin-top: -5px;
  304. border-width: 0 5px 5px;
  305. border-bottom-color: #000;
  306. }