jk.nipponalba.scot website https://jk.nipponalba.scot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

786 lines
13 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. @charset "UTF-8";
  2. @import url('https://rsms.me/inter/inter.css');
  3. html { font-family: 'Inter', sans-serif; height:100%;}
  4. @supports (font-variation-settings: normal) {
  5. html { font-family: 'Inter var', sans-serif; }
  6. }
  7. :root {
  8. --dark-link:#59ABE3;
  9. --dark-text:#f8f8f8;
  10. --dark-bg:#2b2b2b;
  11. --dark-opacity: 0.75;
  12. --light-text:#2b2b2b;
  13. --light-bg:#f8f8f8;
  14. --light-link:#0065BF;
  15. --light-opacity:1;
  16. --text-colour: var(--dark-text);
  17. --bg-colour: var(--dark-bg);
  18. --link-colour: var(--dark-link);
  19. --opacity-img: var(--dark-opacity);
  20. }
  21. @media (prefers-color-scheme: light) {
  22. --text-colour: var(--light-text);
  23. --bg-colour: var(--light-bg);
  24. --link-colour: var(--light-link);
  25. --opacity-img: var(--light-opacity);
  26. }
  27. [data-theme="light"]{
  28. --text-colour: var(--light-text);
  29. --bg-colour: var(--light-bg);
  30. --link-colour: var(--light-link);
  31. --opacity-img: var(--light-opacity);
  32. }
  33. /* Switched mode */
  34. .theme-switch:checked ~ *,
  35. .theme-switch:checked + *,
  36. .theme-switch:checked + * + *{
  37. --text-colour:var(--light-text);
  38. --bg-colour:var(--light-bg);
  39. --link-colour:var(--light-link);
  40. --opacity-img: var(--light-opacity);
  41. }
  42. .theme-switch{
  43. display:none;
  44. }
  45. .light{
  46. display:inline;
  47. float:right;
  48. color:var(--text-colour);
  49. }
  50. html {
  51. -webkit-animation-fill-mode: forwards;
  52. }
  53. body {
  54. color: var(--text-colour);
  55. font-size: 15px;
  56. width: 100%;
  57. margin: 0 auto 30px auto;
  58. background: var(--bg-colour);
  59. }
  60. #page{
  61. display:block;
  62. height:100%;
  63. color: var(--text-colour);
  64. background: var(--bg-colour);
  65. }
  66. .main, .content {
  67. background: var(--bg-colour);
  68. color: var(--text-colour);
  69. height:95%;
  70. display:block;
  71. }
  72. p {
  73. line-height: 1.9em;
  74. font-weight: 400;
  75. font-size: 14px;
  76. }
  77. a {
  78. text-decoration: none;
  79. }
  80. img {
  81. opacity: var(--opacity-img);
  82. transition: opacity .5s ease-in-out;
  83. }
  84. img:hover {
  85. opacity: 1
  86. }
  87. .category {
  88. padding: 4px 6px;
  89. border-radius: 3px;
  90. border: 1px solid var(--text-colour);
  91. }
  92. .blog {
  93. padding: 4px 6px;
  94. border-radius: 3px;
  95. background: var(--link-colour);
  96. border: 1px solid var(--text-colour);
  97. }
  98. .tag::before {
  99. content: "#";
  100. opacity: .75;
  101. }
  102. .tag, .category {
  103. display: inline-block;
  104. font-size: 15px;
  105. line-height: 1;
  106. margin: 5px 8px 5px 0;
  107. }
  108. pre {
  109. background: var(--bg-colour);
  110. padding: 5px;
  111. }
  112. .info i{
  113. opacity: 0.5;
  114. margin-right: 5px;
  115. }
  116. a:link, a:visited {
  117. opacity: 1;
  118. -webkit-transition: all .15s linear;
  119. -moz-transition: all .15s linear;
  120. -o-transition: all .15s linear;
  121. -ms-transition: all .15s linear;
  122. transition: all .15s linear;
  123. color: var(--text-colour);
  124. }
  125. a:hover, a:active {
  126. color: var(--link-colour);
  127. }
  128. .content {
  129. background: var(--bg-colour);
  130. position:fixed;
  131. left:30%;
  132. height: 100%;
  133. float: right;
  134. width: 80%;
  135. margin-top: 60px;
  136. overflow:auto;
  137. -ms-overflow-style:none;
  138. }
  139. .content::-webkit-scrollbar{
  140. display:none;
  141. }
  142. .page-top {
  143. width: 70%;
  144. position: fixed;
  145. right: 0;
  146. z-index: 3;
  147. height: 60px;
  148. border-bottom: 1px solid var(--text-colour);
  149. background: var(--bg-colour);
  150. }
  151. .page-top .nav {
  152. width:90%;
  153. list-style: none;
  154. padding: 18px 30px;
  155. float: left;
  156. font-size: 14px;
  157. }
  158. .page-top .nav li{
  159. position: relative;
  160. display: initial;
  161. padding-right: 20px;
  162. }
  163. .page-top .nav a {
  164. color: var(--text-colour);
  165. }
  166. .page-top .nav a:hover {
  167. color: var(--link-colour);
  168. }
  169. .page-top .information{
  170. float: right;
  171. padding-top: 12px;
  172. padding-right: 20px;
  173. }
  174. .page-top .information .avatar {
  175. float: right;
  176. }
  177. .page-top .information .avatar img {
  178. width: 48px;
  179. height: 48px;
  180. border-radius: 300px;
  181. }
  182. .page-top .information .back_btn {
  183. float: left;
  184. padding-top: 5px;
  185. margin-right: -10px;
  186. }
  187. .page-top .information .back_btn li {
  188. display: initial;
  189. padding-right: 40px;
  190. }
  191. .page-top .language-selector {
  192. float:right;
  193. position:relative;
  194. display:inline-flex;
  195. top:-11px;
  196. }
  197. .page-top .language-selector ul{
  198. list-style:none;
  199. padding-bottom:0;
  200. margin:0;
  201. }
  202. .page-top .language-selector li{
  203. vertical-align:top;
  204. margin:0;
  205. padding-bottom:22px;
  206. }
  207. .page-top .language-selector li div{
  208. position:relative;
  209. height:50px;
  210. display:inline;
  211. top:-5px;
  212. left:-5px;
  213. margin-right:5px;
  214. }
  215. .page-top .language-selector i{
  216. padding-bottom:15px;
  217. margin-top:5px;
  218. }
  219. .sidebar {
  220. width: 30%;
  221. background: var(--bg-colour);
  222. -webkit-background-size: cover;
  223. background-size: cover;
  224. height: 100%;
  225. top: 0;
  226. left: 0;
  227. position: fixed;
  228. z-index: 4;
  229. border-right: 1px solid var(--text-colour);
  230. }
  231. .sidebar #logo{
  232. max-width: 300px;
  233. width: 80%;
  234. margin: 0 auto;
  235. display:block;
  236. padding: 10px;
  237. }
  238. .sidebar .logo-title {
  239. text-align: center;
  240. padding-top: 240px;
  241. }
  242. .sidebar .logo-title .description {
  243. font-size: 14px;
  244. width: 60%;
  245. margin: 0 auto;
  246. color: var(--text-colour);
  247. padding-bottom:10px;
  248. }
  249. .sidebar .logo-title .logo {
  250. margin: 0 auto;
  251. }
  252. .sidebar .logo-title .title h3 {
  253. text-transform: uppercase;
  254. font-size: 2rem;
  255. font-weight: bold;
  256. letter-spacing: 2px;
  257. line-height: 1;
  258. margin: 1em;
  259. }
  260. .sidebar .logo-title .title a {
  261. text-decoration: none;
  262. color: var(--text-colour);
  263. font-size: 2rem;
  264. font-weight: bold;
  265. }
  266. .sidebar .social-links {
  267. list-style: none;
  268. padding: 0;
  269. font-size: 14px;
  270. text-align: center;
  271. }
  272. .sidebar .social-links i {
  273. margin-right: 3px;
  274. }
  275. .sidebar .social-links li {
  276. display: inline;
  277. padding: 0 4px;
  278. line-height: 0;
  279. }
  280. .sidebar .social-links a {
  281. color: var(--text-colour);
  282. }
  283. .sidebar .social-links a:hover {
  284. color: var(--link-colour);
  285. }
  286. .post {
  287. background: var(--bg-colour);
  288. margin: 30px;
  289. width:80%;
  290. padding-left:20px;
  291. }
  292. .post .banner{
  293. width:100%;
  294. max-height: 300px;
  295. object-fit:scale-down;
  296. object-position:top;
  297. }
  298. .post .post-title h1 {
  299. text-transform: uppercase;
  300. font-size: 30px;
  301. letter-spacing: 5px;
  302. line-height: 1;
  303. }
  304. .post .post-title h2 {
  305. text-transform: uppercase;
  306. letter-spacing: 1px;
  307. font-size: 28px;
  308. line-height: 1;
  309. font-weight: 600;
  310. color: var(--text-colour);
  311. }
  312. .post .post-title h3 {
  313. text-transform: uppercase;
  314. letter-spacing: 1px;
  315. line-height: 1;
  316. font-weight: 600;
  317. color: var(--text-colour);
  318. font-size: 22px;
  319. margin: 0;
  320. }
  321. .post .post-title a {
  322. text-decoration: none;
  323. letter-spacing: 1px;
  324. color: var(--text-colour);
  325. }
  326. .post .post-title a:hover {
  327. text-decoration: underline;
  328. }
  329. .post .post-content a {
  330. text-decoration: none;
  331. color: var(--link-colour);
  332. }
  333. .post .post-content table {
  334. border-collapse:collapse;
  335. }
  336. .post .post-content table,.post .post-content table td, .post .post-content table th{
  337. border: 1px dashed var(--text-colour);
  338. }
  339. .post .post-content table tr:nth-child(even) {
  340. background-color: #f2f2f2;
  341. }
  342. .post .post-content table td, .post .post-content table th{
  343. padding: 15px
  344. }
  345. .post .post-content a:hover {
  346. color: var(--link-colour);
  347. }
  348. .post .post-content h3 {
  349. color: var(--text-colour);
  350. font-size: 22px;
  351. font-weight: 600;
  352. }
  353. .post .post-content h4 {
  354. color: var(--text-colour);
  355. font-size: 16px;
  356. }
  357. .post .post-content img {
  358. max-width: 60%;
  359. text-align: center;
  360. margin: 0 auto;
  361. display:block;
  362. padding:10px;
  363. }
  364. .post .post-footer {
  365. padding: 0 0 30px 0;
  366. border-bottom: 1px solid var(--text-colour);
  367. }
  368. .post .post-footer .meta {
  369. max-width: 100%;
  370. height: 25px;
  371. color: var(--text-colour);
  372. }
  373. .post .post-footer .meta .info {
  374. float: left;
  375. font-size: 12px;
  376. margin-bottom: 1em;
  377. }
  378. .post .post-footer .info .separator a {
  379. margin-right: 0.2em;
  380. }
  381. .post .post-footer .meta .info .date {
  382. margin-right: 10px;
  383. }
  384. .info {
  385. margin: 1em;
  386. }
  387. .post .post-footer .meta a {
  388. text-decoration: none;
  389. color: var(--text-colour);
  390. padding-right: 10px;
  391. }
  392. .post .post-footer .meta a:hover {
  393. color: var(--link-colour);
  394. }
  395. .post .post-footer .blog{
  396. color: var(--text-colour);
  397. }
  398. .post .post-footer .blog:hover{
  399. color: var(--text-colour);
  400. }
  401. .post .post-footer .meta i {
  402. margin-right: 6px;
  403. }
  404. .post .post-footer .tags {
  405. padding-bottom: 15px;
  406. font-size: 13px;
  407. }
  408. .post .post-footer .tags ul {
  409. list-style-type: none;
  410. display: inline;
  411. margin: 0;
  412. padding: 0;
  413. }
  414. .post .post-footer .tags ul li {
  415. list-style-type: none;
  416. margin: 0;
  417. padding-right: 5px;
  418. display: inline;
  419. }
  420. .post .post-footer .tags a {
  421. text-decoration: none;
  422. color: var(--text-colour);
  423. font-weight: 400;
  424. }
  425. .post .post-footer .tags a:hover {
  426. text-decoration: none;
  427. }
  428. .pagination {
  429. margin: 30px;
  430. padding: 0px 0 56px 0;
  431. border-bottom: 1px solid var(--text-colour);
  432. }
  433. .pagination ul {
  434. list-style: none;
  435. margin: 0;
  436. padding: 0;
  437. height: 13px;
  438. }
  439. .pagination ul li {
  440. margin: 0 2px 0 2px;
  441. display: inline;
  442. line-height: 1;
  443. }
  444. .pagination ul li a {
  445. text-decoration: none;
  446. }
  447. .pagination .pre {
  448. float: left;
  449. }
  450. .pagination .next {
  451. float: right;
  452. }
  453. .like-reblog-buttons {
  454. float: right;
  455. }
  456. .like-button {
  457. float: right;
  458. padding: 0 0 0 10px;
  459. }
  460. .reblog-button {
  461. float: right;
  462. padding: 0;
  463. }
  464. #install-btn {
  465. position: fixed;
  466. bottom: 0px;
  467. right: 6px;
  468. }
  469. .footer {
  470. clear: both;
  471. text-align: center;
  472. font-size: 14px;
  473. margin: 0 auto;
  474. bottom: 0;
  475. position: absolute;
  476. width: 100%;
  477. padding-bottom: 20px;
  478. background: var(--bg-colour);
  479. }
  480. .footer a {
  481. color: var(--text-colour);
  482. }
  483. .footer a:hover {
  484. color: var(--link-colour);
  485. }
  486. /*for archive*/
  487. .archive {
  488. width: 80%;
  489. }
  490. .description {
  491. color: var(--text-colour);
  492. }
  493. .list-title{
  494. margin:30px;
  495. font-size:30px;
  496. font-weight:bold;
  497. color: var(--text-colour);
  498. }
  499. .list-title i{
  500. font-size:22px;
  501. vertical-align:middle;
  502. color: var(--text-colour);
  503. }
  504. .list-with-title {
  505. font-size: 14px;
  506. margin: 30px;
  507. padding: 0;
  508. }
  509. .list-with-title li {
  510. list-style-type: none;
  511. padding: 0;
  512. }
  513. .list-with-title .listing-title {
  514. font-size: 24px;
  515. color: var(--text-colour);
  516. font-weight: 600;
  517. line-height: 2.2em;
  518. }
  519. .list-with-title .listing {
  520. padding: 0;
  521. }
  522. .list-with-title .listing .listing-post {
  523. padding-bottom: 5px;
  524. }
  525. .list-with-title .listing .listing-post .post-time {
  526. float: right;
  527. color: var(--text-colour);
  528. }
  529. .list-with-title .listing .listing-post a {
  530. color: var(--text-colour);
  531. }
  532. .list-with-title .listing .listing-post a:hover {
  533. color: var(--link-colour);
  534. }
  535. /* share */
  536. .share {
  537. margin: 0px 30px;
  538. display: inline-flex;
  539. }
  540. /* about */
  541. .about {
  542. margin: 30px;
  543. width:80%;
  544. }
  545. .about h3 {
  546. font-size: 22px;
  547. }
  548. /* links*/
  549. .links {
  550. margin: 30px;
  551. }
  552. .links h3 {
  553. font-size: 22px;
  554. }
  555. .links a {
  556. cursor: pointer;
  557. }
  558. /* Comments */
  559. .comment-count {
  560. color: #666;
  561. }
  562. .tab-community {
  563. color: #666;
  564. }
  565. .readmore {
  566. font-size: 14px;
  567. text-align:left;
  568. padding:0;
  569. text-decoration:underline;
  570. }
  571. .back-button {
  572. padding-top: 30px;
  573. max-width: 100px;
  574. padding-left: 40px;
  575. float: left;
  576. }
  577. /* Buttons */
  578. a.btn {
  579. color: #868686;
  580. font-weight: 400;
  581. }
  582. .btn {
  583. display: inline-block;
  584. position: relative;
  585. outline: 0;
  586. color: rgba(0, 0, 0, 0.44);
  587. background: transparent;
  588. font-size: 14px;
  589. text-align: center;
  590. text-decoration: none;
  591. cursor: pointer;
  592. border: 1px solid rgba(0, 0, 0, 0.15);
  593. white-space: nowrap;
  594. font-weight: 400;
  595. font-style: normal;
  596. border-radius: 999em;
  597. }
  598. .btn:hover {
  599. display: inline-block;
  600. position: relative;
  601. outline: 0px;
  602. color: #464545;
  603. background: transparent;
  604. font-size: 14px;
  605. text-align: center;
  606. text-decoration: none;
  607. cursor: pointer;
  608. border: 1px solid #464545;
  609. white-space: nowrap;
  610. font-weight: 400;
  611. font-style: normal;
  612. border-radius: 999em;
  613. }
  614. [role="back"] {
  615. padding: 0.5em 1.25em;
  616. line-height: 1.666em;
  617. }
  618. [role="home"] {
  619. padding: 0.5em 1.25em;
  620. line-height: 1.666em;
  621. }
  622. [role="navigation"] {
  623. padding: 0.5em 1.25em;
  624. line-height: 1.666em;
  625. }
  626. [role="tags"] {
  627. padding: 6px 12px;
  628. }
  629. /* Menu */
  630. .menu {
  631. float: right;
  632. padding-top: 30px;
  633. }
  634. .menu .btn-down {
  635. margin: 0px;
  636. }
  637. .menu .btn-down li {
  638. list-style: none;
  639. width: 100px;
  640. }
  641. .menu .btn-down li a {
  642. display: inline-block;
  643. position: relative;
  644. padding: 0.5em 1.25em;
  645. outline: 0;
  646. color: rgba(0, 0, 0, 0.44);
  647. background: transparent;
  648. font-size: 14px;
  649. text-align: center;
  650. text-decoration: none;
  651. cursor: pointer;
  652. border: 1px solid rgba(0, 0, 0, 0.15);
  653. white-space: nowrap;
  654. font-weight: 400;
  655. font-style: normal;
  656. border-radius: 999em;
  657. margin-top: 5px;
  658. }
  659. .menu .btn-down li a:hover {
  660. position: relative;
  661. padding: 0.5em 1.25em;
  662. outline: 0;
  663. color: #fff;
  664. background: #3CBD10;
  665. font-size: 14px;
  666. text-align: center;
  667. text-decoration: none;
  668. cursor: pointer;
  669. border: 1px solid rgba(0, 0, 0, 0.15);
  670. white-space: nowrap;
  671. font-weight: 400;
  672. font-style: normal;
  673. border-radius: 999em;
  674. margin-top: 5px;
  675. }
  676. .menu .btn-down div {
  677. position: absolute;
  678. visibility: hidden;
  679. width: 100px;
  680. float: right;
  681. }
  682. .page_404 {
  683. text-align: center;
  684. padding-top: 50px;
  685. }
  686. .pixelfed_embed {
  687. margin:0 auto;
  688. display:block;
  689. }
  690. @media screen and (max-width: 960px) {
  691. .sidebar {
  692. width: 100%;
  693. position: absolute;
  694. border-right: none;
  695. z-index: 1;
  696. }
  697. .sidebar .logo-title {
  698. padding-top: 100px;
  699. }
  700. .sidebar .logo-title .title img {
  701. width: 70px;
  702. }
  703. .sidebar .logo-title .title h3 {
  704. font-size: 20px;
  705. }
  706. .sidebar #logo{
  707. padding-top:80px;
  708. }
  709. .page-top {
  710. width: 100%;
  711. }
  712. .post-title h3 {
  713. line-height: 1.6;
  714. }
  715. .content {
  716. margin-top: 680px;
  717. width: 100%;
  718. z-index: 2;
  719. position: absolute;
  720. left:0;
  721. height:100%;
  722. }
  723. .about, .post, .archive{
  724. width:95%;
  725. margin-left:15px;
  726. }
  727. .footer {
  728. display: none;
  729. }
  730. .share {
  731. display: grid;
  732. }
  733. }