style-responsive.css 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. @media (max-width: 767px) {
  2. .navbar-toggle {
  3. margin-top: 12px;
  4. }
  5. .head-section .navbar-collapse ul.navbar-nav {
  6. float: none;
  7. margin-left: 0;
  8. }
  9. .head-section .nav li a:hover,
  10. .head-section .nav li a:focus,
  11. .head-section .nav li a.dropdown-toggle:focus,
  12. .head-section .nav li a.dropdown-toggle .dropdown-menu li a:hover,
  13. .head-section .nav li.active a,
  14. .head-section .dropdown-menu li a:hover {
  15. color: #fff !important;
  16. }
  17. .head-section .navbar-nav > li {
  18. padding: 0;
  19. margin-bottom: 2px;
  20. }
  21. .head-section .nav li ul.dropdown-menu li a {
  22. margin-left: 0px;
  23. color: #999!important; ;
  24. }
  25. .head-section .nav li .dropdown-menu li a:hover, .head-section .nav li .dropdown-menu li.active a {
  26. color: rgb(44, 62, 80) !important;
  27. }
  28. .navbar-brand {
  29. margin-top: 15px;
  30. }
  31. .btn, .form-control {
  32. margin-bottom: 10px;
  33. }
  34. }
  35. @media (max-width: 479px) {
  36. .head-section .navbar {
  37. min-height: 60px;
  38. }
  39. .navbar-toggle {
  40. margin-right: 0px;
  41. }
  42. .head-section .nav li .dropdown-menu li a:hover {
  43. color: rgb(44, 62, 80);
  44. }
  45. .navbar-brand {
  46. margin-top: 10px !important;
  47. float: left !important;
  48. line-height: 40px;
  49. }
  50. }
  51. ul {
  52. padding-left: 0;
  53. }
  54. .btn-primary {
  55. background-color: #41cac0;
  56. border-color: #41cac0;
  57. color: #FFFFFF;
  58. }
  59. .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  60. background-color: #495d74;
  61. color: #FFFFFF;
  62. text-decoration: none;
  63. }
  64. label, span, body, strong, b, div, h1, h2, h3, h4, h5, h6, input {
  65. font-family: "helvetica", "Noto Sans Japanese", "나눔고딕", "맑은 고딕", "Nanum Gothic", "sans-serif";
  66. }
  67. pre {
  68. font-family: "monospace";
  69. white-space: pre-wrap;
  70. overflow: hidden;
  71. }
  72. html {
  73. background-color: rgb(44, 62, 80);
  74. }
  75. textarea {
  76. resize: vertical;
  77. }
  78. input {
  79. width: 100%;
  80. }
  81. .head-section .nav li a, .head-section .nav li.active ul.dropdown-menu li a {
  82. color: #373A3C;
  83. }
  84. @media (min-width: 768px){
  85. .head-section .nav li .dropdown-menu {
  86. border: 1px solid rgb(204,204,204);
  87. margin-top: -20px;
  88. }
  89. }
  90. @media (max-width: 767px){
  91. .head-section .nav li .dropdown-menu {
  92. margin-top: 0px;
  93. margin-bottom: 10px;
  94. }
  95. }
  96. @media (max-width: 767px){
  97. #searchInput {
  98. width: 90%;
  99. }
  100. @media (max-width: 479px){
  101. table {
  102. min-width: 100%;
  103. }
  104. }
  105. #searchform {
  106. margin-top: 15px;
  107. }
  108. }
  109. @media (max-width: 991px){
  110. @media (min-width: 768px){
  111. #mobile {
  112. display: none;
  113. }
  114. }
  115. }
  116. @media (min-width: 768px){
  117. #searchInput {
  118. width: 180px;
  119. }
  120. #right-search {
  121. float: right;
  122. }
  123. }
  124. button {
  125. border: 1px solid deepskyblue;
  126. border-radius: 0.25rem;
  127. padding: 5px 10px 5px 10px;
  128. background: deepskyblue;
  129. color: white;
  130. }
  131. input {
  132. border: 1px solid #aaaaaa;
  133. padding: 5px 10px 5px 10px;
  134. background: white;
  135. box-shadow: 0 2px 5px rgba(50,50,50,0.1);
  136. }
  137. #toc ul {
  138. margin: .3em 0;
  139. }
  140. #searchInput {
  141. box-shadow: 0 2px 5px rgba(50,50,50,0.1);
  142. }
  143. input#searchInput {
  144. border: none;
  145. border-bottom: 2px solid #eee;
  146. box-shadow: none;
  147. border-radius: 0px;
  148. }
  149. input#searchInput:focus {
  150. border-bottom: 2px solid rgb(44, 62, 80);
  151. }
  152. .fa {
  153. margin-right: 3px;
  154. }
  155. .comment {
  156. word-break: break-all;
  157. }
  158. input {
  159. max-width: 100%;
  160. }
  161. .breadcrumbs h1 {
  162. word-break: break-all;
  163. border: none;
  164. }
  165. #back_title {
  166. border: 1px solid black;
  167. padding: 5px;
  168. margin-top: -30px;
  169. margin-bottom: 20px;
  170. word-break: break-all;
  171. }
  172. .form-control.input-sm {
  173. font-size: 14px;
  174. color: black;
  175. }
  176. li {
  177. margin-left: 20px;
  178. margin-bottom: 2px;
  179. }
  180. .nav.navbar-nav li {
  181. margin: 0;
  182. }
  183. .btn.btn-secondary.tools-btn.dropdown-toggle {
  184. height: 34px;
  185. }
  186. sub, sup {
  187. line-height: 1.6rem;
  188. }
  189. textarea {
  190. border: 1px solid #e1e8ed;
  191. padding: 5px;
  192. border-radius: 3px;
  193. background: white;
  194. box-shadow: 0 2px 5px rgba(50,50,50,0.1);
  195. }
  196. .btn.btn-primary {
  197. margin: 0;
  198. }
  199. .btn {
  200. transition: all .3s ease;
  201. }
  202. #inside {
  203. color: green;
  204. }
  205. .hljs {
  206. background: #f5f8fa;
  207. }
  208. #syntax {
  209. margin-bottom: -10px;
  210. background-color: #f0f0f0;
  211. }
  212. #cate {
  213. width: 100%;
  214. border: 1px solid #777;
  215. padding: 5px;
  216. margin-top: 1em;
  217. }
  218. select {
  219. display: inline-block;
  220. padding: 0.2rem 0.4rem;
  221. font-size: 16px;
  222. line-height: 1.5;
  223. color: #55595c;
  224. background-color: #fff;
  225. background-image: none;
  226. border: 1px solid #ccc;
  227. border-radius: .25rem;
  228. }
  229. button#save {
  230. background: lightseagreen;
  231. border-color: lightseagreen;
  232. margin-right: 5px;
  233. }
  234. button#come {
  235. background: palevioletred;
  236. border-color: palevioletred;
  237. }
  238. input {
  239. border: 1px solid #e1e8ed;
  240. padding: 5px;
  241. border-radius: 3px;
  242. }
  243. form#searchform {
  244. margin-bottom: 0;
  245. }
  246. button#searchGoButton {
  247. height: 30px;
  248. }
  249. button#searchSearchButton {
  250. height: 30px;
  251. }
  252. h1#main_title {
  253. margin-bottom: 0;
  254. margin-top: 0;
  255. }
  256. a.navbar-brand {
  257. width: auto;
  258. margin-right: 20px;
  259. }
  260. blockquote {
  261. padding: 1em calc(2em + 25px) 1em 1em;
  262. margin: 1em 0em 0em;
  263. background: #eeeeee;
  264. display: block;
  265. border: 2px dashed #ccc;
  266. border-left: 5px solid #2C3E50;
  267. background-image: url('/views/acme/img/quote.png');
  268. background-position: calc(100% - 10px) 10px;
  269. background-repeat: no-repeat;
  270. background-size: 25px;
  271. font-size: 14px;
  272. }
  273. img, iframe {
  274. max-width: 100%;
  275. }
  276. table {
  277. background-color: #f5f5f5;
  278. border-collapse: collapse;
  279. }
  280. td {
  281. padding: 5px 10px;
  282. border: 1px solid #dddddd;
  283. }
  284. #toc {
  285. border: 1px solid #ccc;
  286. display: inline-block;
  287. padding: 20px;
  288. font-size: 15px;
  289. margin-top: 20px;
  290. margin-bottom: 20px;
  291. }
  292. .scroll-buttons a:link, .scroll-buttons a:visited {
  293. color: white;
  294. }
  295. div.scroll-buttons a {
  296. display: inline-block;
  297. width: 42px;
  298. height: 42px;
  299. padding: 5px 8px 9px 8px;
  300. border: 1px solid #545454;
  301. border-left: 0;
  302. text-decoration: none;
  303. text-align: center;
  304. background: rgba(26,26,26,0.9);
  305. border-bottom: 0;
  306. }
  307. #footnote-list {
  308. margin-bottom: -20px;
  309. display: block;
  310. }
  311. #footnote {
  312. margin-bottom: -10px;
  313. }
  314. div.scroll-buttons {
  315. position: fixed;
  316. float: right;
  317. height: 42px;
  318. text-align: right;
  319. font-size: 1.7em;
  320. z-index: 10000;
  321. margin-bottom: -10px;
  322. bottom: 10px;
  323. right: 0px;
  324. opacity: 0.8;
  325. }
  326. div.scroll-buttons a.random-link {
  327. border-left: 1px solid #545454;
  328. }
  329. div.scroll-buttons a {
  330. display: block;
  331. float: left;
  332. width: 42px;
  333. height: 42px;
  334. padding: 5px 8px 9px 8px;
  335. border: 1px solid #545454;
  336. border-left: 0;
  337. background: #dedede;
  338. text-decoration: none;
  339. text-align: center;
  340. background: rgba(26,26,26,0.9);
  341. border-bottom: 0;
  342. }
  343. .scroll-buttons .fa {
  344. margin-top: 5px;
  345. }
  346. #yosolo {
  347. width: 33.33%;
  348. text-align: center;
  349. }
  350. @media (max-width: 768px) {
  351. table {
  352. min-width: 100%;
  353. }
  354. }
  355. textarea {
  356. width: 100%;
  357. }
  358. h1, h2, h3, h4, h5, h6 {
  359. margin-bottom: 10px;
  360. margin-top: 10px;
  361. border-bottom: 1px solid #CCC;
  362. padding-bottom: 5px;
  363. }
  364. .navbar-brand {
  365. margin: auto;
  366. font-size: 28px;
  367. }
  368. footer#footer {
  369. bottom: 0;
  370. position: relative;
  371. width: 100%;
  372. }
  373. body {
  374. padding-top: 70px;
  375. padding-bottom: 30px;
  376. }
  377. .theme-dropdown .dropdown-menu {
  378. display: block;
  379. position: static;
  380. margin-bottom: 20px;
  381. }
  382. .theme-showcase > p > .btn {
  383. margin: 5px 0;
  384. }
  385. body {
  386. word-break: break-all;
  387. }
  388. input[type="checkbox"] {
  389. width: auto;
  390. }
  391. #left_end {
  392. padding-bottom: 50px;
  393. }
  394. table#toron tbody tr td {
  395. padding-top: 6px;
  396. padding-bottom: 6px;
  397. }
  398. ul#redirect {
  399. margin-bottom: 0;
  400. }
  401. html, body {
  402. max-width: 100%;
  403. overflow-x: hidden;
  404. }