plus.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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. }
  19. .form-control.input-sm {
  20. font-size: 14px;
  21. color: black;
  22. }
  23. li {
  24. margin-left: 20px;
  25. }
  26. .nav.navbar-nav li {
  27. margin: 0;
  28. }
  29. .btn.btn-secondary.tools-btn.dropdown-toggle {
  30. height: 34px;
  31. }
  32. sub, sup {
  33. line-height: 1.6rem;
  34. }
  35. textarea {
  36. border: 1px solid #e1e8ed;
  37. padding: 5px;
  38. border-radius: 3px;
  39. background: white;
  40. box-shadow: 0 2px 5px rgba(50,50,50,0.1);
  41. }
  42. .btn.btn-primary {
  43. margin: 0;
  44. }
  45. .btn {
  46. transition: all .3s ease;
  47. }
  48. #inside {
  49. color: green;
  50. }
  51. .form-actions {
  52. float: right;
  53. }
  54. .hljs {
  55. background: #f5f8fa;
  56. }
  57. #syntax {
  58. margin-bottom: -10px;
  59. background-color: #f0f0f0;
  60. }
  61. #cate {
  62. width: 100%;
  63. border: 1px solid #777;
  64. padding: 5px;
  65. margin-top: 1em;
  66. }
  67. select {
  68. display: inline-block;
  69. padding: 0.2rem 0.4rem;
  70. font-size: 16px;
  71. line-height: 1.5;
  72. color: #55595c;
  73. background-color: #fff;
  74. background-image: none;
  75. border: 1px solid #ccc;
  76. border-radius: .25rem;
  77. }
  78. #preview {
  79. background: #37b1e3;
  80. color: white;
  81. margin-bottom: 0;
  82. }
  83. #preview:hover {
  84. background: #2b90ba;
  85. }
  86. input {
  87. border: 1px solid #e1e8ed;
  88. padding: 5px;
  89. border-radius: 3px;
  90. }
  91. .font-size-1 {
  92. font-size: 120%;
  93. }
  94. form#searchform {
  95. margin-bottom: 0;
  96. }
  97. button#searchGoButton {
  98. height: 30px;
  99. }
  100. button#searchSearchButton {
  101. height: 30px;
  102. }
  103. h1#main_title {
  104. margin-bottom: 0;
  105. margin-top: 0;
  106. }
  107. a.navbar-brand {
  108. width: auto;
  109. margin-right: 20px;
  110. }
  111. #open:hover {
  112. color: black;
  113. background: white;
  114. border: 1px solid #ccc;
  115. }
  116. .font-size-2 {
  117. font-size: 140%;
  118. }
  119. .font-size-3 {
  120. font-size: 160%;
  121. }
  122. .font-size-4 {
  123. font-size: 180%;
  124. }
  125. .font-size-5 {
  126. font-size: 200%;
  127. }
  128. .font-size-small-1 {
  129. font-size: 85%;
  130. }
  131. .font-size-small-2 {
  132. font-size: 70%;
  133. }
  134. .font-size-small-3 {
  135. font-size: 55%;
  136. }
  137. .font-size-small-4 {
  138. font-size: 40%;
  139. }
  140. .font-size-small-5 {
  141. font-size: 25%;
  142. }
  143. ref {
  144. background-color: #efefef;
  145. color: #555555;
  146. border: 1px solid #cecece;
  147. font-size: 0.8rem;
  148. margin-left: 0.1rem;
  149. margin-right: 0.2rem;
  150. }
  151. iframe {
  152. max-width: 100%;
  153. }
  154. blockquote {
  155. padding:1em calc(2em + 25px) 1em 1em;
  156. margin:1em 0em 0em;
  157. background:#eeeeee;
  158. display:table;
  159. border:2px dashed #ccc;
  160. border-left:5px solid #2C3E50;
  161. background-image: url('/views/acme/img/quote.png');
  162. background-position:calc(100% - 10px) 10px;
  163. background-repeat:no-repeat;
  164. background-size:25px;
  165. }
  166. img {
  167. max-width: 100%;
  168. }
  169. td {
  170. padding: 5px 10px;
  171. border: 1px solid #dddddd;
  172. }
  173. table {
  174. background-color: #f5f5f5;
  175. border-collapse: collapse;
  176. }
  177. not_del {
  178. display: none;
  179. }
  180. #toc {
  181. border: 1px solid #ccc;
  182. display: inline-block;
  183. padding: 20px;
  184. font-size: 15px;
  185. margin-bottom: 20px;
  186. margin-top: 20px;
  187. }
  188. #toc-name {
  189. font-size: 18px;
  190. }
  191. s, strike, del {
  192. color:gray;
  193. }
  194. s:hover, strike:hover, del:hover {
  195. color:#666;background-color:#eee;text-decoration:none;
  196. }
  197. .scroll-buttons a:link, .scroll-buttons a:visited {
  198. color: white;
  199. }
  200. div.scroll-buttons a {
  201. display: inline-block;
  202. float: left;
  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. }