wimdupont.com

Code generator of https://wimdupont.com
git clone git://git.wimdupont.com/wimdupont.com.git
Log | Files | Refs | README | LICENSE

main.css (1336B)


      1 body {
      2     background: #000;
      3     color: #e8e8e8;
      4     font-family: sans-serif;
      5     max-width: 960px;
      6     margin: 0 auto;
      7 }
      8 
      9 h2 {
     10     font-size: 120%;
     11 }
     12 
     13 table {
     14     border-collapse: collapse;
     15     margin-left: auto;
     16     margin-right: auto;
     17     table-layout: fixed;
     18     width: 98%;
     19 }
     20 
     21 tr {
     22     border-bottom: dotted thin #694333;
     23 }
     24 
     25 tr:hover {
     26     background-color: #000033;
     27 }
     28 
     29 li p {
     30     margin-block: 0.5em;
     31 }
     32 
     33 a {
     34     text-decoration: none;
     35     color: #56c8ff;
     36 }
     37 
     38 a:hover {
     39     text-decoration: underline;
     40 }
     41 
     42 .nav {
     43     text-align: center;
     44     font-weight: bold;
     45     margin-top: 3em;
     46     margin-bottom: 2.5em;
     47 }
     48 
     49 .nav a {
     50     padding: 1em;
     51 }
     52 
     53 .subheader {
     54     color: #bdbdbd;
     55     text-align: center;
     56     padding-bottom: 0.4em;
     57 }
     58 
     59 .imageblock {
     60     display: grid;
     61     place-content: center;  
     62     gap: 0.3em;
     63 }
     64 
     65 .imageblock .title {
     66     text-align: center;
     67     font-size: 60%;
     68     text-align: right;
     69 }
     70 
     71 .center {
     72     text-align: center;
     73 }
     74 
     75 .series {
     76     font-size: 80%;
     77     color: #1faaaf;
     78 }
     79 
     80 .language-java,
     81 .language-bash,
     82 .language-conf {
     83     padding: 1em;
     84     display: block;
     85     background-color: #5555;
     86     font-size: 120%;
     87     overflow-x: auto;
     88     white-space: break-spaces;
     89 }
     90 
     91 .language-conf {
     92     background-color: #cc9d9d54;
     93 }
     94 
     95 p.tableblock{
     96     margin-block: 0.3em;
     97 }
     98 
     99 th.halign-right,td.halign-right{
    100     text-align:right
    101 }