2
0

style.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. #RecentChanges:hover, #RecentChanges:focus {
  2. text-decoration: none;
  3. color: #e5dafb;
  4. }
  5. #logo:hover, #logo:focus {
  6. color: #e5dafb;
  7. }
  8. #in {
  9. margin-left: 20px;
  10. }
  11. #log {
  12. line-height: 32px;
  13. width: 20px;
  14. height: 36px;
  15. font-size: 16px;
  16. color: white;
  17. float: left;
  18. margin-right: 10px;
  19. padding: 5px;
  20. margin-top: 9px;
  21. }
  22. #log:hover, #log:focus {
  23. color: #e5dafb;
  24. }
  25. button#goto {
  26. border-radius: 0;
  27. border-left: 0;
  28. border-right: 0;
  29. }
  30. textarea, label, span, body, strong, b, div, h1, h2, h3, h4, h5, h6, h7, input {
  31. font-family: "나눔바른고딕", "나눔고딕", "맑은 고딕", "NanumBarunGothic", "NanumGothic", "Malgun Gothic", "sans-serif";
  32. }
  33. pre {
  34. font-family: "d2codingfont", "나눔고딕코딩", "NanumGothicCoding", "monospace";
  35. }
  36. .four-fifths.column {
  37. word-break: break-all;
  38. }
  39. textarea {
  40. width: 100%;
  41. }
  42. li {
  43. margin-left: 20px;
  44. }
  45. .form-actions {
  46. margin-top: 15px;
  47. }
  48. .contect {
  49. color: #FFFFFF;
  50. background-color: #008000;
  51. }
  52. .out_link {
  53. color: #008000;
  54. }
  55. h1, h2, h3, h4, h5, h6 {
  56. margin-bottom: 10px;
  57. }
  58. .font-size-1 {
  59. font-size: 120%;
  60. }
  61. .font-size-2 {
  62. font-size: 140%;
  63. }
  64. .font-size-3 {
  65. font-size: 160%;
  66. }
  67. .font-size-4 {
  68. font-size: 180%;
  69. }
  70. .font-size-5 {
  71. font-size: 200%;
  72. }
  73. .font-size-small-1 {
  74. font-size: 85%;
  75. }
  76. .font-size-small-2 {
  77. font-size: 70%;
  78. }
  79. .font-size-small-3 {
  80. font-size: 55%;
  81. }
  82. .font-size-small-4 {
  83. font-size: 40%;
  84. }
  85. .font-size-small-5 {
  86. font-size: 25%;
  87. }
  88. td:hover {
  89. background: #ddd;
  90. }
  91. ref {
  92. background-color: #efefef;
  93. color: #555555;
  94. border: 1px solid #cecece;
  95. font-size: 0.8rem;
  96. margin-left: 0.1rem;
  97. margin-right: 0.2rem;
  98. }
  99. iframe {
  100. max-width: 100%;
  101. }
  102. blockquote {
  103. padding:1em calc(2em + 25px) 1em 1em;
  104. margin:1em 0em 0em;
  105. background:#eeeeee;
  106. display:table;
  107. border:2px dashed #ccc;
  108. border-left:5px solid #8D7DAD;
  109. background-image: url('../static/images/quote.png');
  110. background-position:calc(100% - 10px) 10px;
  111. background-repeat:no-repeat;
  112. background-size:25px;
  113. }
  114. img {
  115. max-width: 100%;
  116. }
  117. td {
  118. padding: 5px 10px;
  119. border: 1px solid #dddddd;
  120. }
  121. table {
  122. background-color: #f5f5f5;
  123. }
  124. .title {
  125. display: inline-block;
  126. margin-bottom: 30px;
  127. }
  128. not_del {
  129. display: none;
  130. }
  131. #toc {
  132. border: 1px solid #ccc;
  133. display: inline-block;
  134. padding: 20px;
  135. font-size: 15px;
  136. margin-bottom: 20px;
  137. margin-top: 20px;
  138. }
  139. #toc-name {
  140. font-size: 18px;
  141. }
  142. s, strike, del {
  143. color:gray;
  144. }
  145. pre {
  146. padding: 7px;
  147. background-color: #eeeeee;
  148. border: 1px solid #dddddd;
  149. border-radius: 3px;
  150. overflow-x: auto;
  151. display: block;
  152. font-size: 90%;
  153. line-height: 1.5;
  154. color: #373a3c;
  155. }
  156. s:hover, strike:hover, del:hover {
  157. color:#666;background-color:#eee;text-decoration:none;
  158. }
  159. .menu-item {
  160. float: left;
  161. position: relative;
  162. }
  163. .menu {
  164. position: relative;
  165. display: inline-block;
  166. vertical-align: middle;
  167. }
  168. .one-fifth {
  169. width: 100%;
  170. }
  171. .input-group {
  172. width: 250px;
  173. }
  174. #search {
  175. width: 250px;
  176. float: right;
  177. padding: 5px;
  178. margin-bottom: 0;
  179. }
  180. #logo {
  181. float: left;
  182. margin-right: 10px;
  183. padding: 5px;
  184. }
  185. .one-fifth.column {
  186. margin-bottom: 20px;
  187. margin-top: -18px;
  188. background: #8D7DAD;
  189. z-index: 2;
  190. position: relative;
  191. }
  192. .btn {
  193. height: 34px;
  194. }
  195. .scroll-buttons a:link, .scroll-buttons a:visited {
  196. color: white;
  197. }
  198. div.scroll-buttons a {
  199. display: inline-block;
  200. float: left;
  201. width: 42px;
  202. height: 42px;
  203. padding: 5px 8px 9px 8px;
  204. border: 1px solid #545454;
  205. border-left: 0;
  206. text-decoration: none;
  207. text-align: center;
  208. background: rgba(26,26,26,0.9);
  209. border-bottom: 0;
  210. }
  211. .footnote-list {
  212. margin-bottom: -10px;
  213. display: block;
  214. }
  215. #footnote {
  216. margin-bottom: -10px;
  217. }
  218. div.scroll-buttons {
  219. position: fixed;
  220. float: right;
  221. height: 42px;
  222. text-align: right;
  223. font-size: 1.7em;
  224. z-index: 10000;
  225. margin-bottom: -10px;
  226. bottom: 10px;
  227. right: 0px;
  228. opacity: 0.8;
  229. }
  230. .four-fifths {
  231. float: none;
  232. margin-left: auto;
  233. }
  234. #tool {
  235. float: right;
  236. }
  237. #logo {
  238. width: auto;
  239. height: auto;
  240. font-size: 25px;
  241. color: white;
  242. }
  243. #logo:hover {
  244. text-decoration: none;
  245. }
  246. #powered {
  247. float: right;
  248. }
  249. #top {
  250. position: relative;
  251. }
  252. #is_mobile {
  253. margin-left: 5px;
  254. }
  255. table {
  256. font-size: 13px;
  257. }
  258. .scroll-buttons .fa {
  259. margin-top: 5px;
  260. }
  261. @media (max-width: 939px) {
  262. #search {
  263. float: right;
  264. }
  265. }
  266. @media (max-width: 459px) {
  267. #search {
  268. float: left;
  269. width: 100%;
  270. margin-bottom: 5px;
  271. }
  272. .input-group {
  273. width: 100%;
  274. }
  275. }
  276. @media (min-width: 1280px) {
  277. #all_contect {
  278. width: 1260px;
  279. margin: auto;
  280. }
  281. }
  282. .four-fifths.column {
  283. border: 1px solid #EFEFEF;
  284. padding: 30px;
  285. background: white;
  286. }
  287. body {
  288. background: #EFEFEF;
  289. }
  290. #RecentChanges {
  291. line-height: 32px;
  292. width: 105px;
  293. height: 45px;
  294. font-size: 16px;
  295. color: white;
  296. float: left;
  297. padding: 5px;
  298. }
  299. @media (max-width: 710px) {
  300. #is_mobile {
  301. display: none;
  302. }
  303. #RecentChanges {
  304. width: 20px;
  305. margin-right: 10px;
  306. margin-top: 9px;
  307. height: 36px;
  308. }
  309. }
  310. #left_bar {
  311. height: 100%;
  312. width: 15%;
  313. position: fixed;
  314. overflow: scroll;
  315. left: 0;
  316. top: 0;
  317. background: white;
  318. padding: 20px;
  319. }
  320. #yosolo {
  321. width: 33.33%;
  322. text-align: center;
  323. }
  324. #toron {
  325. width: 100%;
  326. }
  327. #toroncolorgreen {
  328. background-color: #B0D3AD;
  329. }
  330. #toroncolorred {
  331. background-color: #f3c2c2;
  332. }
  333. #toroncolor {
  334. background-color: #d5d5d5;
  335. }
  336. #bb {
  337. background: #a28a7e;
  338. color: white;
  339. }
  340. #history {
  341. margin-right: 10px;
  342. }
  343. #list {
  344. margin-top: 10px;
  345. margin-bottom: 10px;
  346. }
  347. .foot {
  348. position: fixed;
  349. bottom: 0px;
  350. padding: 10px;
  351. width: 100%;
  352. background: white none repeat scroll 0% 0%;
  353. left: 0px;
  354. border: 1px solid #ccc;
  355. text-align: center;
  356. z-index: 10000;
  357. }
  358. #toroncolorstop {
  359. background: #9dd5e1;
  360. }
  361. #bl {
  362. background: gainsboro;
  363. }
  364. #toroncoloradmin {
  365. background-color: #F5C1C1;
  366. }
  367. @media (min-width: 768px) {
  368. .four-fifths {
  369. width: 85%;
  370. }
  371. }
  372. @media (max-width: 768px) {
  373. .four-fifths {
  374. width: 100%;
  375. }
  376. #left_bar {
  377. display: none;
  378. }
  379. }
  380. .out_link::before {
  381. padding: 0px;
  382. background: transparent;
  383. color: green;
  384. content: "\f14c";
  385. font-family: FontAwesome;
  386. }
  387. textarea {
  388. width: 100%;
  389. }
  390. a.not_thing {
  391. color: #bf4c4c;
  392. }
  393. #open {
  394. background: #E5DAFB;
  395. text-shadow: none;
  396. }
  397. .menu-item:hover, #open:hover {
  398. background-color: #ddd;
  399. }
  400. sub, sup {
  401. line-height: 1.4em;
  402. }
  403. pre span {
  404. font-family: '니눔고딕코딩', 'Nanum Gothic Coding', monospace;
  405. }