plus.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  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. div.scroll-buttons a.random-link {
  233. border-left: 1px solid #545454;
  234. }
  235. div.scroll-buttons a {
  236. display: block;
  237. float: left;
  238. width: 42px;
  239. height: 42px;
  240. padding: 5px 8px 9px 8px;
  241. border: 1px solid #545454;
  242. border-left: 0;
  243. background: #dedede;
  244. text-decoration: none;
  245. text-align: center;
  246. background: rgba(26,26,26,0.9);
  247. border-bottom: 0;
  248. }
  249. table {
  250. font-size: 13px;
  251. }
  252. .scroll-buttons .fa {
  253. margin-top: 5px;
  254. }
  255. #yosolo {
  256. width: 33.33%;
  257. text-align: center;
  258. }
  259. #toron {
  260. width: 100%;
  261. }
  262. #toron_color_green {
  263. background-color: #B0D3AD;
  264. }
  265. #toron_color_red {
  266. background-color: #f3c2c2;
  267. }
  268. #toron_color {
  269. background-color: #d5d5d5;
  270. }
  271. #bb {
  272. background: #a28a7e;
  273. color: white;
  274. }
  275. #history {
  276. margin-right: 10px;
  277. }
  278. .popup {
  279. position: fixed;
  280. padding: 10px;
  281. background: #f5f5f5;
  282. width: 100%;
  283. bottom: 0px;
  284. left: 0px;
  285. text-align: center;
  286. box-shadow: 0 -1px 8px 0 rgba(0,0,0,0.35);
  287. z-index: 100000;
  288. max-height: 30%;
  289. overflow-y: scroll;
  290. }
  291. .foot {
  292. position: fixed;
  293. bottom: 0px;
  294. padding: 10px;
  295. width: 100%;
  296. background: white none repeat scroll 0% 0%;
  297. left: 0px;
  298. border: 1px solid #ccc;
  299. text-align: center;
  300. z-index: 10000;
  301. }
  302. #bl {
  303. background: gainsboro;
  304. }
  305. @media (max-width: 768px) {
  306. table {
  307. min-width: 100%;
  308. max-width: 100;
  309. }
  310. }
  311. textarea {
  312. width: 100%;
  313. }
  314. a.not_thing {
  315. color: #bf4c4c;
  316. }
  317. a.out_link {
  318. color: #008000;
  319. }
  320. a.out_link::before {
  321. padding: 0px;
  322. background: transparent;
  323. color: green;
  324. content: "\f14c";
  325. font-family: FontAwesome;
  326. }
  327. #open {
  328. background: #4188F1;
  329. color: white;
  330. }
  331. h1, h2, h3, h4, h5, h6 {
  332. margin-bottom: 10px;
  333. margin-top: 10px;
  334. }
  335. .navbar-brand {
  336. margin: auto;
  337. font-size: 28px;
  338. }
  339. #block {
  340. background: gainsboro;
  341. }
  342. #toron_color_blue {
  343. background: #c1ebff;
  344. }
  345. .foot {
  346. position: fixed;
  347. bottom: 0px;
  348. padding: 10px;
  349. width: 100%;
  350. background: white none repeat scroll 0% 0%;
  351. left: 0px;
  352. border: 1px solid #ccc;
  353. text-align: center;
  354. z-index: 10000;
  355. max-height: 30%;
  356. overflow-y: scroll;
  357. }
  358. footer#footer {
  359. bottom: 0;
  360. position: relative;
  361. width: 100%;
  362. }
  363. body {
  364. padding-top: 70px;
  365. padding-bottom: 30px;
  366. }
  367. .theme-dropdown .dropdown-menu {
  368. display: block;
  369. position: static;
  370. margin-bottom: 20px;
  371. }
  372. .theme-showcase > p > .btn {
  373. margin: 5px 0;
  374. }
  375. body {
  376. word-break: break-all;
  377. }