2
0

plus.css 6.1 KB

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