Changeset 7f82568


Ignore:
Timestamp:
Oct 31, 2024, 7:02:44 AM (2 weeks ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
a8c08e1
Parents:
7dd59e3
Message:

Update style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • public/css/custom.css

    r7dd59e3 r7f82568  
    11:root {
    2     --universal-margin: 0.5rem;
    3     --universal-padding: 0.5rem;
    4     --universal-border-radius: 0.2rem;
     2    --universal-margin: 0.5em;
     3    --universal-padding: 0.5em;
     4    --universal-border-radius: 0.2em;
    55    --a-link-color: blue;
    66    --a-visited-color: #551A8B;
     
    99:link { color: #0000EE; }
    1010:visited { color: #551A8B; }
     11:visited:hover { color: blue; }
    1112
    1213html {
     
    2122#footnotes,
    2223#content > :not(article):not(#table-of-contents) {
    23     max-width: calc(60ch);
     24    max-width: 40em;
    2425    margin: var(--universal-padding);
    2526    padding: calc(var(--universal-padding) * 2);
     
    4243article h2 {
    4344    margin-top: 0;
    44     padding: 0;
     45    border: 1px solid rgba(0,0,0,.2);
     46    text-transform: uppercase;
     47    font-size: 1.2em;
     48    text-align: center;
     49    font-weight: 300;
     50    border-radius: var(--universal-border-radius);
     51    padding: 4px 2.5em;
     52    box-shadow: 0px 2px 0 rgba(0,0,255,.2);
     53    background: rgba(0,0,255,0.05);
    4554}
    4655
     
    5160    position: relative;
    5261    z-index: 999;
    53    
    54     /* top: calc(var(--universal-padding) - 2px); */
     62    font-size: 0.9em;
    5563}
    5664
     
    5967    background: #fefefe;
    6068    border: 1px solid rgba(0,0,0,.25);
    61     box-shadow: 0 1px 0px rgba(0,0,0,.1);
     69    box-shadow: 0 2px 0px rgba(0,0,0,.1);
    6270    border-radius: var(--universal-border-radius);
    6371    text-decoration: underline;
    64     color: var(--a-link-color);
    65     padding: 4px 12px;
     72    padding: 4px 2.5em;
    6673    margin-right: 6px;
    6774    flex-shrink: 0;
    68 }
    69 
    70 .navbar a:visited {
    71     color: purple;
    72 }
    73 
    74 #youmu {
    75     position: relative;
    76     top: 1em;
    77     margin-bottom: -0.5em;
    78     max-width: 400px;
    79     filter: drop-shadow(0 12px 4px rgba(0,0,0,.25));
     75    font-weight: 600;
     76    text-transform: uppercase;
    8077}
    8178
    8279#preamble {
    83     max-width: calc(60ch + 6em);
     80    max-width: 42em;
    8481    margin: var(--universal-margin);
    8582}
     
    8784#postamble {
    8885    margin: var(--universal-margin);
    89     max-width: calc(76ch);
     86    max-width: 50.5em;
    9087    display: flex;
    9188    flex-direction: row;
     
    10097#postamble ul {
    10198    display: flex;
    102     list-style: square;
     99    list-style: inside;
    103100    margin: 0;
    104101    padding-left: 0;
     
    111108
    112109    #postamble ul li:first-child {
    113         list-style: square !important;
     110        list-style: inside !important;
    114111    }
    115112}
    116113
    117114#postamble ul li {
    118     margin: 0 0.75em;
    119     margin: 0 1ch;
     115    margin: 0 0.5em;
    120116}
    121117
     
    138134    z-index: 1050;
    139135    position: fixed;
    140     left: 70ch;
     136    left: 45em;
    141137    background: #fefefe;
    142138    box-shadow: 0 1px 0px rgba(0,0,0,.1);
     
    144140    border: 1px solid #cfcfcf;
    145141    max-height: calc(100% - 3 * (var(--universal-margin) + 0.5em) - 5em);
    146     overflow: auto;
    147     max-width: 35ch;
    148     padding-right: 2em;
     142    max-width: 45m;
     143    padding-right: 1em;
    149144}
    150145
    151146#table-of-contents * {
    152147    padding: none;
     148}
     149
     150#table-of-contents a:visited {
     151    color: blue;
    153152}
    154153
     
    211210    max-width: 100%;
    212211    border-radius: var(--universal-border-radius);
     212    box-shadow: 0 2px 1px rgba (0, 0, 0, 0.2);
     213    border: 1px solid rgba(0, 0, 0, 0.2);
    213214}
    214215
     
    239240
    240241a:hover {
    241     text-decoration: underline;
    242242    background: #ddd;
     243    box-shadow: 2px 2px 0px;
    243244}
    244245
Note: See TracChangeset for help on using the changeset viewer.