plus.css 6.0 KB

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