main.css (1460B)
1 body { 2 background: #000; 3 color: #bdbdbd; 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 .nav img { 54 margin-bottom: 0.5em; 55 } 56 57 .subheader { 58 color: #00cdcd; 59 text-align: center; 60 padding-bottom: 0.4em; 61 } 62 63 .imageblock { 64 display: grid; 65 place-content: center; 66 gap: 0.3em; 67 } 68 69 .imageblock .title { 70 text-align: center; 71 font-size: 60%; 72 text-align: right; 73 } 74 75 .imageblock.bordered img { 76 margin-top: 1.5em; 77 border: 1px solid #56c8ff; 78 } 79 80 .center { 81 text-align: center; 82 } 83 84 .series { 85 font-size: 80%; 86 color: #1faaaf; 87 } 88 89 .language-java, 90 .language-bash, 91 .language-conf { 92 padding: 1em; 93 display: block; 94 background-color: #5555; 95 font-size: 120%; 96 overflow-x: auto; 97 white-space: break-spaces; 98 } 99 100 .language-conf { 101 background-color: #cc9d9d54; 102 } 103 104 p.tableblock{ 105 margin-block: 0.3em; 106 } 107 108 th.halign-right,td.halign-right{ 109 text-align:right 110 }