plus.css 6.0 KB

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