Changeset 8ff16b8 for public


Ignore:
Timestamp:
Jul 16, 2022, 12:59:34 PM (3 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
05217bb
Parents:
5f1c100
git-author:
Mikhail Kirillov <w96k@…> (07/16/22 12:57:37)
git-committer:
Mikhail Kirillov <w96k@…> (07/16/22 12:59:34)
Message:

Add php article

Location:
public
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • public/css/custom.css

    r5f1c100 r8ff16b8  
    11body {
    2     padding: 1em;
     2    padding: 0 1em 1em 1em;
     3    background: #f0f0f0;
    34}
    45
     
    1011    padding: 1em;
    1112    background: #fefefe;
    12     box-shadow: 0 1px 3px rgba(0,0,0,.1);
     13    box-shadow: 0 2px 2px rgba(0,0,0,.35);
    1314    position: relative;
    1415    border-radius: var(--universal-border-radius);
     16    border: 1px solid #f0f0f0;
    1517}
    1618
     
    3234.navbar {
    3335    border: 0;
     36    padding: 0 calc(var(--universal-padding) * 2.5);
     37    position: relative;
     38    top: 1em;
     39    z-index: 999;
    3440}
    3541
    3642.navbar .button {
     43    text-transform: none;
    3744    background: #fefefe;
    38     text-transform: none;
     45    box-shadow: 0 -3px 0 rgba(0,0,0,.35), 1px -1px 1px rgba(0,0,0,.15);
     46    border-radius: 0.15em 0.15em 0 0;
     47    text-decoration: underline;
     48    color: var(--a-link-color);
     49    padding: 4px 12px;
     50    margin: 6px;
    3951}
    4052
     
    7688#postamble {
    7789    margin: var(--universal-margin);
    78     max-width: calc(60ch + 6em);
     90    max-width: calc(60ch + 7.75em);
    7991}
    8092
     
    114126    background: #fefefe;
    115127    line-height: 12pt;
    116     box-shadow: 0 1px 3px rgba(0,0,0,.1);
     128    box-shadow: 0 2px 2px rgba(0,0,0,.35);
    117129    border: none;
    118130    max-height: calc(100% - 2 * (var(--universal-margin) + 0.5em) - 9em);
     
    234246}
    235247.org-webring .org-webring-article-title {
    236     font-size: 0.8rem;
    237     font-weight: bold;
     248    font-size: 0.1em !important;
     249    padding: 0;
     250    margin: 0 5em 0 9em;
     251    border-radius: 0.25em;
     252    max-height: 40ch;
    238253}
    239254.org-webring .org-webring-article {
    240     background: #f6f6f6;
    241255    flex: 1 1 auto;
    242256    flex-basis: 40%;
     
    244258    flex-direction: column;
    245259    margin: 0.5em;
    246     padding: 0.15em 0.3em;
    247     border: 0.1rem solid rgba(0,0,0,.25);
    248260    transition: 0.3s;
    249261    opacity: 1;
     262    overflow: hidden;
     263    border-left: 3px solid rgba(0,0,0,.35);
    250264}
    251265.org-webring .org-webring-article:hover {
    252266    opacity: 1;
    253     background-color: #ebebeb;
    254267}
    255268
     
    279292    font-size: 0.8rem;
    280293    flex: 1 1 0;
     294    display: none;
    281295}
    282296.org-webring .org-webring-attribution {
     
    285299    padding-right: 0.5em;
    286300    color: #666;
     301    display: none;
    287302}
    288303.org-webring .org-webring-article-date {
    289304    text-align: center;
     305    display: none;
    290306}
    291307.org-webring .org-webring-article-source {
    292308    text-align: center;
     309    display: none;
    293310}
    294311.org-webring .org-webring-timestamp {
    295312    color: #666;
     313    display: none;
    296314}
    297315@media screen and (max-width: 600px) {
     
    309327        margin: 0 0.5rem;
    310328        margin-bottom: 0.5rem;
    311         padding: 0.5rem;
    312329    }
    313330    .org-webring .org-webring-article-pinned {
     
    319336        margin: 0 0.5rem;
    320337        margin-bottom: 0.5rem;
    321         padding: 0.5rem;
    322338        border: 0.15rem black solid;
    323339        border-color: black;
     
    347363    margin: 0 var(--universal-padding);
    348364}
     365
     366ul ul {
     367    margin: 0;
     368}
     369
     370table tr td:nth-child(1) {
     371    width: 20%;
     372}
  • public/css/mini.css

    r5f1c100 r8ff16b8  
    2222    --universal-margin: 0.5rem;
    2323    --universal-padding: 0.5rem;
    24     --universal-border-radius: 0.2rem;
     24    --universal-border-radius: 0.3rem;
    2525    --a-link-color: #0277bd;
    2626    --a-visited-color: #01579b;
     
    221221
    222222a {
    223     text-decoration: none;
    224 }
    225 
    226 article a:hover {
    227223    text-decoration: underline;
    228     text-underline-offset: 0.2em;
    229     text-decoration-thickness: 2px;
     224}
     225
     226a:hover {
     227    text-decoration: underline;
     228    background: rgba(0,0,0,.1);
    230229}
    231230
     
    10861085    padding: var(--universal-padding) calc(2 * var(--universal-padding));
    10871086    font-weight: 900;
    1088     box-shadow: 0 2px 3px rgba(0,0,0,.1);
     1087    box-shadow: 0 1px 2px rgba(0,0,0,.35);
    10891088}
    10901089
     
    10941093    margin-right: 0.25em;
    10951094    border-radius: var(--universal-border-radius);
    1096     box-shadow: 0 2px 3px rgba(0,0,0,.1);
     1095    box-shadow: 0 1px 2px rgba(0,0,0,.35);
    10971096}
    10981097
     
    11241123
    11251124nav a:hover, nav a:focus, nav a:visited:hover, nav a:visited:focus {
    1126     text-decoration: none;
    11271125    background: var(--nav-hover-back-color);
    11281126}
Note: See TracChangeset for help on using the changeset viewer.