site

Website's source files.
git clone git://git.ryanmj.xyz/site.git
Log | Files | Refs | Submodules | LICENSE

emacs.css (3149B)


      1 @import './rgb.css';
      2 
      3 table {
      4     table-layout: fixed;
      5     border-collapse: collapse;
      6     border-spacing: 0;
      7     width: 100%;
      8     justify-content: left;
      9 }
     10 
     11 h5 {
     12     color: #fff;
     13     font-size: 1.1em;
     14 }
     15 
     16 code {
     17     font-size: 1em;
     18 }
     19 
     20 .src {
     21     color: #00FF7F;
     22 }
     23 
     24 .org-ol {
     25     color: #FFFFFF;
     26     font-size: 1.2em;
     27 }
     28 
     29 pre {
     30     color: #00FFFF;
     31 }
     32 
     33 
     34 .termout {
     35     white-space: pre-wrap;
     36 }
     37 
     38 table p {
     39     padding: 0;
     40     margin: 0;
     41 }
     42 
     43 h4 {
     44     color: #00FF88;
     45 }
     46 
     47 td {
     48     color: #00FF88;
     49     padding: 0;
     50 }
     51 
     52 th {
     53     color: #00FFFF;
     54     padding: 0;
     55 }
     56 
     57 tr td:nth-of-type(1) {
     58     width: 20%;
     59 }
     60 
     61 tr td:nth-of-type(2) {
     62     text-align: left;
     63     justify-content: left;
     64     margin-left: 0.2em;
     65     float:left;
     66     width: 80%
     67 }
     68 
     69 
     70 .emacs {
     71     background-image:url(../res/bg.png);
     72     border: 0.2em solid #285577;
     73     /* positioning */
     74     margin: 0 auto;
     75     margin-top: 75px;
     76     width: 75%;
     77 }
     78 
     79 #gnu-emacs {
     80     width: 2%;
     81 }
     82 
     83 .ebar {
     84     height: 1.3em;
     85     background-color: #CCCCCC;
     86     padding: 0;
     87     margin : 0;
     88     width: 100%;
     89 }
     90 
     91 .ebar-top {
     92     border: 0.15em solid #F5F5F5;
     93 }
     94 
     95 .ebar-bot {
     96     border: 0.15em solid #7A7A7A;
     97 }
     98 
     99 .ebar p {
    100     padding: 0;
    101     margin: 0;
    102     font-size: 1.2em;
    103     display: inline;
    104     color: #00008B;
    105 }
    106 
    107 
    108 .ebar .title-red {
    109     padding: 0;
    110     margin: 0;
    111     font-size: 0.8em;
    112     color: #B22;
    113 }
    114 
    115 
    116 body {
    117     font-family: Inconsolata, "Courier New", monospace;
    118     -webkit-font-smoothing : none;
    119     background-color: #C8C8C8;
    120     background-image: url("../res/ui-back.png");
    121     -moz-font-smoothing: never;
    122 }
    123 
    124 h1 {
    125     font-size: 4em;
    126     color: #b0c4de;
    127     text-align: center;
    128 }
    129 
    130 title {
    131     color: #00FFFF;
    132 }
    133 
    134 h2 {
    135     color: #00FF7F;
    136     font-size: 26pt;
    137 }
    138 
    139 h3 { font-size: 16pt; color: #B0C4DE; text-decoration: underline; }
    140 
    141 
    142 p {
    143     color: #fff;
    144     font-size: 16pt;
    145     -moz-font-smoothing: never;
    146 }
    147 
    148 .headpar {
    149     color:#00FFFF;
    150 }
    151 
    152 .headital {
    153     color: #FFFF00;
    154 }
    155 
    156 a {
    157     font-weight: bold;
    158     text-decoration: none;
    159     font-size: 16pt;
    160 }
    161 
    162  /* unvisited link */
    163 a:link {
    164   color: #00FFFF;
    165 }
    166 
    167 /* visited link */
    168 a:visited {
    169   color: #e916d5;
    170 }
    171 
    172 
    173 /* selected link */
    174 a:active {
    175   color: blue;
    176 } 
    177 
    178 a:hover {
    179     text-decoration: underline;
    180 }
    181 
    182 hr.vertical {
    183     height:100%; /* you might need some positioning for this to work, see other questions about 100% height */
    184     width:0;
    185     border:1px solid black;
    186 }
    187 
    188 .seperator {
    189   height: 100%;
    190   width: 1px;
    191   background: black;
    192   top: 0;
    193   bottom: 0;
    194   position: absolute;
    195   left: 50%;
    196 }
    197 
    198 .hddr {
    199     width: 50%;
    200     display: table-cell;
    201     border:1px solid grey;
    202 }
    203 
    204 .fttr {
    205     margin-top: auto;
    206     margin: auto;
    207     margin-top: 75px;
    208     width: 75%;
    209 }
    210 
    211 ul {
    212 }
    213 
    214 ul li {
    215     color: white;
    216     font-size: 1.2em;
    217     margin-left: 2em;
    218 }
    219 
    220 .code {
    221     display: inline;
    222 }
    223 
    224 #links {
    225     font-size: large;
    226     text-align: center;
    227     margin: auto;
    228     max-width: 700px;
    229     padding: 5px;
    230     border-radius: 10px;
    231 }
    232 
    233 #links img {
    234     height: 1.25em;
    235 }
    236 
    237 a:hover img {
    238     background: rgba(0, 0, 0, 0);
    239     transition: .5s;
    240     transform: scale(2, 2);
    241 }
    242 
    243 .ebar .last {
    244     margin-right: 0%;
    245     margin-left: 30%;
    246     display: inline;
    247 }
    248 
    249 
    250 h6 {
    251     font-size: 16pt;
    252 }