plus.css 5.7 KB

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