acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

custom.css (1717B)

      1 table, th, td {
      2   border: 1px solid #bbb;
      3   padding: 10px;
      4 }
      5 
      6 td {
      7   text-align:center;
      8 }
      9 span.pre
     10 {
     11   padding-right:8px;
     12 }
     13 
     14 span.pre:first-child
     15 {
     16   padding-right:0px;
     17 }
     18 
     19 
     20 code.sig-name
     21 {
     22   /*margin-left:8px;*/
     23 }
     24 
     25 .toggle .header {
     26     display: block;
     27     clear: both;
     28     cursor: pointer;
     29     font-weight: bold;
     30 }
     31 
     32 .toggle .header:before {
     33    font-family: FontAwesome, "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
     34    content: "\f0da \00a0 Show ";
     35    display: inline-block;
     36    font-size: 1.1em;
     37 }
     38 
     39 .toggle .header.open:before {
     40    content: "\f0d7 \00a0 Hide ";
     41 }
     42 
     43 .header p {
     44     display: inline-block;
     45     font-size: 1.1em;
     46     margin-bottom: 8px;
     47 }
     48 
     49 .wy-side-nav-search {
     50   background-color: #f5f5f5;
     51 }
     52 .wy-side-nav-search>div.version {
     53   color: #333;
     54   display: none; /*replaced by dropdown*/
     55 }
     56 
     57 
     58 .home-img {
     59   width:32%;
     60   transition: transform .3s ease-out;
     61 }
     62 
     63 .home-img:hover {
     64   transform: translate(0, -10px);
     65 }
     66 
     67 /*Let `code` wrap*/
     68 .rst-content code, .rst-content tt, code {
     69   white-space: normal;
     70 }
     71 
     72 .lv-example, .lv-example > iframe {
     73   border: none;
     74   outline: none;
     75   padding: none;
     76   display: block;
     77   width: 320px;
     78   height: 240px;
     79   flex: none;
     80   position: relative;
     81 }
     82 
     83 .lv-example > iframe {
     84   position: absolute;
     85   top: 0;
     86   left: 0;
     87 }
     88 
     89 .lv-example-container {
     90     display: flex;
     91     padding-bottom: 16px;
     92 }
     93 .lv-example-description {
     94     flex: 1 1 auto;
     95     margin-left: 1rem;
     96 }
     97 
     98 .lv-example-link-button {
     99     display: inline-block;
    100     padding: 4px 8px;
    101     border-radius: 4px;
    102     background-color: #2980b9;
    103     color: white;
    104     margin: 0 4px;
    105 }
    106 .lv-example-link-button:hover {
    107     color: white;
    108     filter: brightness(120%);
    109 }
    110 
    111 .lv-example-link-button:visited {
    112     color: white;
    113 }