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.

698 lines
13 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 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 100px 0;
  366. }
  367. .post .post-footer .meta, .post .post-footer-page .meta {
  368. max-width: 100%;
  369. height: 25px;
  370. color: var(--text-colour);
  371. }
  372. .post .post-footer .meta .info, .post .post-footer-page .meta .info {
  373. float: left;
  374. font-size: 12px;
  375. margin-bottom: 1em;
  376. }
  377. .post .post-footer .info .separator a, .post .post-footer-page .info .separator a{
  378. margin-right: 0.2em;
  379. }
  380. .post .post-footer .meta .info .date, .post .post-footer-page .meta .info .date{
  381. margin-right: 10px;
  382. }
  383. .index_info .date {
  384. margin: 0 10px;
  385. }
  386. .post .post-footer .meta a, .post .post-footer-page .meta a{
  387. text-decoration: none;
  388. color: var(--text-colour);
  389. padding-right: 10px;
  390. }
  391. .post .post-footer .meta a:hover, .post .post-footer-page .meta a:hover,{
  392. color: var(--link-colour);
  393. }
  394. .post .post-footer .blog, .post .post-footer-page .blog{
  395. color: var(--text-colour);
  396. }
  397. .post .post-footer .blog:hover, .post .post-footer-page .blog:hover{
  398. color: var(--text-colour);
  399. }
  400. .post .post-footer .meta i, .post .post-footer-page .meta i{
  401. margin-right: 6px;
  402. }
  403. .post .post-footer .tags, .post .post-footer-page .tags{
  404. padding-bottom: 15px;
  405. font-size: 13px;
  406. }
  407. .post .post-footer .tags ul, .post .post-footer-page .tags ul{
  408. list-style-type: none;
  409. display: inline;
  410. margin: 0;
  411. padding: 0;
  412. }
  413. .post .post-footer .tags ul li, .post .post-footer-page .tags ul li{
  414. list-style-type: none;
  415. margin: 0;
  416. padding-right: 5px;
  417. display: inline;
  418. }
  419. .post .post-footer .tags a, .post .post-footer-page .tags a{
  420. text-decoration: none;
  421. color: var(--text-colour);
  422. font-weight: 400;
  423. }
  424. .post .post-footer .tags a:hover, .post .post-footer-page .tags a:hover{
  425. text-decoration: none;
  426. }
  427. .post .post-footer-page .syndication{
  428. display:inline;
  429. float:right;
  430. text-align:right;
  431. font-size:13px;
  432. }
  433. .post .post-footer-page .date{
  434. display:inline;
  435. float:left;
  436. }
  437. .footer {
  438. clear: both;
  439. text-align: center;
  440. font-size: 14px;
  441. position:fixed;
  442. bottom:0;
  443. margin: 0 auto;
  444. width: 100%;
  445. padding:20px 0;
  446. background: var(--bg-colour);
  447. }
  448. .footer a {
  449. color: var(--text-colour);
  450. }
  451. .footer a:hover {
  452. color: var(--link-colour);
  453. }
  454. .footer img{
  455. max-height:40px;
  456. margin-top:10px;
  457. }
  458. /*for archive*/
  459. .description {
  460. color: var(--text-colour);
  461. }
  462. .list-title{
  463. margin:30px 0;
  464. font-size:30px;
  465. font-weight:bold;
  466. color: var(--text-colour);
  467. }
  468. .list-title i{
  469. font-size:22px;
  470. vertical-align:middle;
  471. color: var(--text-colour);
  472. }
  473. .list-with-title {
  474. font-size: 14px;
  475. margin: 30px 0;
  476. padding: 0;
  477. }
  478. .list-with-title li {
  479. list-style-type: none;
  480. padding: 0;
  481. }
  482. .list-with-title .listing-title {
  483. font-size: 24px;
  484. color: var(--text-colour);
  485. font-weight: 600;
  486. line-height: 2.2em;
  487. }
  488. .list-with-title .listing {
  489. padding: 0;
  490. }
  491. .list-with-title .listing .listing-post {
  492. padding-bottom: 5px;
  493. }
  494. .list-with-title .listing .listing-post .post-time {
  495. float: right;
  496. color: var(--text-colour);
  497. }
  498. .list-with-title .listing .listing-post a {
  499. color: var(--text-colour);
  500. }
  501. .list-with-title .listing .listing-post a:hover {
  502. color: var(--link-colour);
  503. }
  504. .readmore {
  505. font-size: 14px;
  506. text-align:left;
  507. padding:0;
  508. text-decoration:underline;
  509. }
  510. .page_404 {
  511. text-align: center;
  512. padding-top: 50px;
  513. }
  514. .pixelfed_embed {
  515. margin:0 auto;
  516. display:block;
  517. }
  518. .content hr {
  519. color: var(--text-colour);
  520. }
  521. .content .author{
  522. width: 75px;
  523. display:inline-block;
  524. margin:0;
  525. padding:0;
  526. }
  527. .content .author img{
  528. width:50px;
  529. margin: auto 0;
  530. }
  531. .content .author .title{
  532. display:none;
  533. }
  534. .content aside{
  535. width:90%;
  536. display:inline-block;
  537. vertical-align: top;
  538. }
  539. .content aside time, .h-cite time{
  540. font-size:13px;
  541. width:100%;
  542. }
  543. .content aside a.time{
  544. text-decoration:underline dashed;
  545. }
  546. .content aside .info time{
  547. font-size:15px;
  548. }
  549. .photos{
  550. display:inline-block;
  551. width:100%;
  552. float:left;
  553. min-width:100%;
  554. margin-bottom:10px;
  555. }
  556. .content img.thumb{
  557. width:300px;
  558. float:left;
  559. display:inline;
  560. padding: 0px;
  561. margin:10px;
  562. border: 1px solid var(--text-colour);
  563. }
  564. .pagination {
  565. list-style:none;
  566. margin: 0 auto;
  567. border:0px;
  568. padding-top:20px;
  569. display:block;
  570. max-width: 600px;
  571. width:100%;
  572. }
  573. .pagination li{
  574. display:inline-block;
  575. padding:10px 50px;
  576. font-weight:bold;
  577. }
  578. .pagination-bottom{
  579. padding-bottom:100px;
  580. }
  581. .anchor {
  582. display:none;
  583. }
  584. .anchor:target {
  585. display:block;
  586. }
  587. @media screen and (max-width: 960px) {
  588. .about .profile{
  589. width:100%;
  590. margin:0 auto;
  591. padding:0;
  592. text-align:center;
  593. display:block;
  594. }
  595. .about .profile .profile-left{
  596. display:inline-block;
  597. margin:0 auto;
  598. padding: 0;
  599. width:100%;
  600. }
  601. .about .profile .profile-left img{
  602. padding: 0px;
  603. margin-right:0px;
  604. margin: 10px;
  605. }
  606. .about .profile .profile-right{
  607. display:block;
  608. width:100%;
  609. text-align:center;
  610. float:none;
  611. margin:0 auto;
  612. }
  613. .page-top {
  614. width: 95%;
  615. padding: 10px 0;
  616. }
  617. .page-top .nav{
  618. width: 70%;
  619. }
  620. .page-top .nav #Responses{
  621. display:none;
  622. }
  623. .page-top .nav li{
  624. padding-right: 10px;
  625. }
  626. .page-top .selectors{
  627. width:130px;
  628. }
  629. .page-top .language-selector i{
  630. padding:0 5px;
  631. }
  632. .post-title h3, section aside h3 {
  633. line-height: 1.6;
  634. }
  635. .content {
  636. width:95%;
  637. z-index: 2;
  638. position: absolute;
  639. left:0;
  640. }
  641. .about, .post, .archive, .content, .stream{
  642. width:95%;
  643. margin:0 auto;
  644. }
  645. .content img, .post img{
  646. width: 90%;
  647. margin: 10px;
  648. text-align:center;
  649. float:none;
  650. }
  651. .content img.thumb{
  652. width:100%;
  653. }
  654. .pagination li{
  655. display:inline-block;
  656. padding:0px 20px;
  657. height: 30px;
  658. }
  659. .pagination-bottom{
  660. margin-bottom:0px;
  661. }
  662. .footer{
  663. display:none;
  664. }
  665. }