plus.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. #in {
  2. margin-left: 20px;
  3. }
  4. #out {
  5. margin-left: 5px;
  6. }
  7. input {
  8. max-width: 100%;
  9. }
  10. .breadcrumbs h1 {
  11. word-break: break-all;
  12. }
  13. #back_title {
  14. border: 1px solid black;
  15. padding: 5px;
  16. margin-top: -30px;
  17. margin-bottom: 10px;
  18. word-break: break-all;
  19. }
  20. .form-control.input-sm {
  21. font-size: 14px;
  22. color: black;
  23. }
  24. li {
  25. margin-left: 20px;
  26. }
  27. .nav.navbar-nav li {
  28. margin: 0;
  29. }
  30. .btn.btn-secondary.tools-btn.dropdown-toggle {
  31. height: 34px;
  32. }
  33. sub, sup {
  34. line-height: 1.6rem;
  35. }
  36. textarea {
  37. border: 1px solid #e1e8ed;
  38. padding: 5px;
  39. border-radius: 3px;
  40. background: white;
  41. box-shadow: 0 2px 5px rgba(50,50,50,0.1);
  42. }
  43. .btn.btn-primary {
  44. margin: 0;
  45. }
  46. .btn {
  47. transition: all .3s ease;
  48. }
  49. #inside {
  50. color: green;
  51. }
  52. .form-actions {
  53. float: right;
  54. }
  55. .hljs {
  56. background: #f5f8fa;
  57. }
  58. #syntax {
  59. margin-bottom: -10px;
  60. background-color: #f0f0f0;
  61. }
  62. #cate {
  63. width: 100%;
  64. border: 1px solid #777;
  65. padding: 5px;
  66. margin-top: 1em;
  67. }
  68. select {
  69. display: inline-block;
  70. padding: 0.2rem 0.4rem;
  71. font-size: 16px;
  72. line-height: 1.5;
  73. color: #55595c;
  74. background-color: #fff;
  75. background-image: none;
  76. border: 1px solid #ccc;
  77. border-radius: .25rem;
  78. }
  79. #preview {
  80. background: #37b1e3;
  81. color: white;
  82. margin-bottom: 0;
  83. }
  84. #preview:hover {
  85. background: #2b90ba;
  86. }
  87. input {
  88. border: 1px solid #e1e8ed;
  89. padding: 5px;
  90. border-radius: 3px;
  91. }
  92. .font-size-1 {
  93. font-size: 120%;
  94. }
  95. form#searchform {
  96. margin-bottom: 0;
  97. }
  98. button#searchGoButton {
  99. height: 30px;
  100. }
  101. button#searchSearchButton {
  102. height: 30px;
  103. }
  104. h1#main_title {
  105. margin-bottom: 0;
  106. margin-top: 0;
  107. }
  108. a.navbar-brand {
  109. width: auto;
  110. margin-right: 20px;
  111. }
  112. #open:hover {
  113. color: black;
  114. background: white;
  115. border: 1px solid #ccc;
  116. }
  117. .font-size-2 {
  118. font-size: 140%;
  119. }
  120. .font-size-3 {
  121. font-size: 160%;
  122. }
  123. .font-size-4 {
  124. font-size: 180%;
  125. }
  126. .font-size-5 {
  127. font-size: 200%;
  128. }
  129. .font-size-small-1 {
  130. font-size: 85%;
  131. }
  132. .font-size-small-2 {
  133. font-size: 70%;
  134. }
  135. .font-size-small-3 {
  136. font-size: 55%;
  137. }
  138. .font-size-small-4 {
  139. font-size: 40%;
  140. }
  141. .font-size-small-5 {
  142. font-size: 25%;
  143. }
  144. ref {
  145. background-color: #efefef;
  146. color: #555555;
  147. border: 1px solid #cecece;
  148. font-size: 0.8rem;
  149. margin-left: 0.1rem;
  150. margin-right: 0.2rem;
  151. }
  152. iframe {
  153. max-width: 100%;
  154. }
  155. blockquote {
  156. padding:1em calc(2em + 25px) 1em 1em;
  157. margin:1em 0em 0em;
  158. background:#eeeeee;
  159. display:table;
  160. border:2px dashed #ccc;
  161. border-left:5px solid #2C3E50;
  162. background-image: url('/views/acme/img/quote.png');
  163. background-position:calc(100% - 10px) 10px;
  164. background-repeat:no-repeat;
  165. background-size:25px;
  166. }
  167. img {
  168. max-width: 100%;
  169. }
  170. td {
  171. padding: 5px 10px;
  172. border: 1px solid #dddddd;
  173. }
  174. table {
  175. background-color: #f5f5f5;
  176. border-collapse: collapse;
  177. }
  178. not_del {
  179. display: none;
  180. }
  181. #toc {
  182. border: 1px solid #ccc;
  183. display: inline-block;
  184. padding: 20px;
  185. font-size: 15px;
  186. margin-bottom: 20px;
  187. margin-top: 20px;
  188. }
  189. #toc-name {
  190. font-size: 18px;
  191. }
  192. s, strike, del {
  193. color:gray;
  194. }
  195. s:hover, strike:hover, del:hover {
  196. color:#666;background-color:#eee;text-decoration:none;
  197. }
  198. .scroll-buttons a:link, .scroll-buttons a:visited {
  199. color: white;
  200. }
  201. div.scroll-buttons a {
  202. display: inline-block;
  203. width: 42px;
  204. height: 42px;
  205. padding: 5px 8px 9px 8px;
  206. border: 1px solid #545454;
  207. border-left: 0;
  208. text-decoration: none;
  209. text-align: center;
  210. background: rgba(26,26,26,0.9);
  211. border-bottom: 0;
  212. }
  213. #footnote-list {
  214. margin-bottom: -20px;
  215. display: block;
  216. }
  217. #footnote {
  218. margin-bottom: -10px;
  219. }
  220. div.scroll-buttons {
  221. position: fixed;
  222. float: right;
  223. height: 42px;
  224. text-align: right;
  225. font-size: 1.7em;
  226. z-index: 10000;
  227. margin-bottom: -10px;
  228. bottom: 10px;
  229. right: 0px;
  230. opacity: 0.8;
  231. }
  232. table {
  233. font-size: 13px;
  234. }
  235. .scroll-buttons .fa {
  236. margin-top: 5px;
  237. }
  238. #yosolo {
  239. width: 33.33%;
  240. text-align: center;
  241. }
  242. #toron {
  243. width: 100%;
  244. }
  245. #toron_color_green {
  246. background-color: #B0D3AD;
  247. }
  248. #toron_color_red {
  249. background-color: #f3c2c2;
  250. }
  251. #toron_color {
  252. background-color: #d5d5d5;
  253. }
  254. #bb {
  255. background: #a28a7e;
  256. color: white;
  257. }
  258. #history {
  259. margin-right: 10px;
  260. }
  261. .popup {
  262. position: fixed;
  263. padding: 10px;
  264. background: #f5f5f5;
  265. width: 100%;
  266. bottom: 0px;
  267. left: 0px;
  268. text-align: center;
  269. box-shadow: 0 -1px 8px 0 rgba(0,0,0,0.35);
  270. z-index: 100000;
  271. max-height: 30%;
  272. overflow-y: scroll;
  273. }
  274. .foot {
  275. position: fixed;
  276. bottom: 0px;
  277. padding: 10px;
  278. width: 100%;
  279. background: white none repeat scroll 0% 0%;
  280. left: 0px;
  281. border: 1px solid #ccc;
  282. text-align: center;
  283. z-index: 10000;
  284. }
  285. #bl {
  286. background: gainsboro;
  287. }
  288. @media (max-width: 768px) {
  289. table {
  290. min-width: 100%;
  291. max-width: 100;
  292. }
  293. }
  294. textarea {
  295. width: 100%;
  296. }
  297. a.not_thing {
  298. color: #bf4c4c;
  299. }
  300. a.out_link {
  301. color: #008000;
  302. }
  303. a.out_link::before {
  304. padding: 0px;
  305. background: transparent;
  306. color: green;
  307. content: "\f14c";
  308. font-family: FontAwesome;
  309. }
  310. #open {
  311. background: #4188F1;
  312. color: white;
  313. }
  314. h1, h2, h3, h4, h5, h6 {
  315. margin-bottom: 10px;
  316. margin-top: 10px;
  317. }
  318. .navbar-brand {
  319. margin: auto;
  320. font-size: 28px;
  321. }
  322. #block {
  323. background: gainsboro;
  324. }
  325. #toron_color_blue {
  326. background: #c1ebff;
  327. }
  328. .foot {
  329. position: fixed;
  330. bottom: 0px;
  331. padding: 10px;
  332. width: 100%;
  333. background: white none repeat scroll 0% 0%;
  334. left: 0px;
  335. border: 1px solid #ccc;
  336. text-align: center;
  337. z-index: 10000;
  338. max-height: 30%;
  339. overflow-y: scroll;
  340. }
  341. footer#footer {
  342. bottom: 0;
  343. position: relative;
  344. width: 100%;
  345. }
  346. body {
  347. padding-top: 70px;
  348. padding-bottom: 30px;
  349. }
  350. .theme-dropdown .dropdown-menu {
  351. display: block;
  352. position: static;
  353. margin-bottom: 20px;
  354. }
  355. .theme-showcase > p > .btn {
  356. margin: 5px 0;
  357. }