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.

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