plus.css 5.9 KB

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