Changeset 29d69bd


Ignore:
Timestamp:
Aug 29, 2022, 1:21:58 AM (2 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
3eb1292
Parents:
1d577b1
Message:

Optimize website even more

Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • .emacs

    r1d577b1 r29d69bd  
    88(require 'simple-httpd)
    99
     10
     11(setq org-html-head-include-default-style nil)
    1012(setq current-folder (file-truename "./"))
    1113
  • content/emacs.org

    r1d577b1 r29d69bd  
    1111
    1212#+CAPTION: Логотип Emacs
    13 [[../public/images/emacs.png]]
    14 
    15 [[../public/images/emacs-config.png]]
    1613
    1714#+BEGIN_EXPORT html
    18 <a href="https://git.sr.ht/~w96k/dotfiles/tree/master/item/emacs/.emacs.d/.emacs-config.org" class="button">
    19   <span class="icon-link"></span>
     15<br>
     16<a href="https://git.sr.ht/~w96k/dotfiles/tree/master/item/emacs/.emacs.d/.emacs-config.org"
     17   style="font-size: 16pt; text-align: center;">
    2018  Исходный код
    2119</a>
  • content/index.org

    r1d577b1 r29d69bd  
    22#+OPTIONS: toc:nil
    33#+LANGUAGE: ru
    4 
    5 #+BEGIN_EXPORT nil
    6 
    7 <!-- News panel on the right -->
    8 <nav id="table-of-contents">
    9   <div id="text-table-of-contents">
    10     <ul style="list-style: none; margin: 0 0.5em;">
    11       <li><p><mark class="inline-block">2022-04-06</mark></p>
    12         <p>Added music page</p></li>
    13       <li><p><mark class="inline-block">2022-04-05</mark></p>
    14         <p>I've deleted my russian articles and translated the whole website in English due strong censorship in Russia.</p></li>
    15     </ul>
    16   </div>
    17 </nav>
    18 #+END_EXPORT
    194
    205#+BEGIN_EXPORT html
  • content/projects.org

    r1d577b1 r29d69bd  
    22#+OPTIONS: toc:nil
    33* Projects
    4 ** DONE My blog w96k.dev
     4** My blog w96k.dev
    55It is written using [[https://www.gnu.org/software/emacs/][Emacs]], [[https://orgmode.org/][Org-mode]] and [[https://minicss.us/docs.htm][Mini.css]]. Here I publish
    66programming stuff. I can provide source code if you are
     
    1111
    1212Website inspired by my blog design: https://mysticmode.net/
    13 ** TODO Guix + Software Heritage Russian Mirror
    14   There is a chance that internet in Russia will be restricted in some
    15   ways, so it is a good idea to setup a server with all essential
    16   software archived. Guix website and CI is blocked from host side for
    17   russians.
     13** Guix + Software Heritage Russian Mirror
     14There is a chance that internet in Russia will be restricted in some
     15ways, so it is a good idea to setup a server with all essential
     16software archived. Guix website and CI is blocked from host side for
     17russians.
    1818
    19   [[https://fosstodon.org/@w96k/108053233765822857][Details]]
     19[[https://fosstodon.org/@w96k/108053233765822857][Details]]
    2020
    21 ** TODO GNU Ensemble
    22   Federated web service that allows its users to collaborate on
    23   composing and recording pieces of music.
     21** GNU Ensemble
     22Federated web service that allows its users to collaborate on
     23composing and recording pieces of music.
  • public/css/custom.css

    r1d577b1 r29d69bd  
    6565}
    6666
    67 .navbar .button:hover {
    68     background: #ddd;
     67.navbar a:active, .navbar a:visited {
     68    color: purple;
    6969}
    7070
     
    8484#postamble {
    8585    margin: var(--universal-margin);
    86     max-width: calc(63ch);
     86    max-width: 48.25em;
    8787    display: flex;
    8888    flex-direction: row;
    8989    justify-content: space-between;
     90    font-size: 10pt;
     91}
     92
     93#postamble p {
     94    margin-top: 0;
    9095}
    9196
    9297#meta p {
    9398    text-align: right;
    94 }
    95 
    96 #copyright p {
    97 
    98 }
    99 
    100 @media screen and (max-width: 768px) {
    101     #postamble, #meta {
    102         text-align: center;
    103     }
    104 }
    105 
    106 hr {
    107     background: rgba(0,0,0,.05) !important;
    108     height: 0.5rem !important;
    109     margin: 1px !important;
    11099}
    111100
     
    157146}
    158147
    159 .inline li {
    160     display: inline-flex;
    161 }
    162 
    163 table {
    164     overflow-x: hidden !important;
    165 }
    166 
    167 table th, table td {
    168     padding: var(--universal-padding);
    169 }
    170 
    171 .org-left {
    172     text-align: left !important;
    173 }
    174 
    175 dl {
    176     padding: 0 calc(var(--universal-padding) + 1em);   
    177 }
    178 
    179148nav * {
    180149    padding: 0.1em 0;
     
    244213    background: #ddd;
    245214}
     215
     216.abstract {
     217    background: rgba(0,0,0,.1);
     218}
Note: See TracChangeset for help on using the changeset viewer.