test/header.html

Thu, 10 Nov 2016 18:27:16 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 10 Nov 2016 18:27:16 +0100
changeset 59
643a3ccecd61
parent 27
53fd8595378c
child 60
9f25df78925e
permissions
-rw-r--r--

test header file now contains user-select:none property

     1 <!DOCTYPE html>
     2 <html>
     3   <head>
     4     <title>c2html</title>
     5     <style type="text/css">
     6       span.c2html-lineno {
     7         /* as long as user-select isn't widely spread, we throw the bomb */
     8         -webkit-user-select: none;
     9         -moz-user-select: none;
    10         -ms-user-select: none;
    11         user-select: none;
    12       }
    13       span.c2html-lineno a {
    14         font-style: italic;
    15         text-decoration: none;
    16         color: grey;
    17       }
    18       span.c2html-keyword {
    19         color: blue;
    20       }
    21       span.c2html-macroconst {
    22         color: cornflowerblue;
    23       }
    24       span.c2html-type {
    25         color: cornflowerblue;
    26       }
    27       span.c2html-directive {
    28         color: green;
    29       }
    30       span.c2html-string {
    31         color: darkorange;
    32       }
    33       span.c2html-comment {
    34         color: grey;
    35       }
    36       span.c2html-stdinclude {
    37         color: darkorange;
    38       }
    39       span.c2html-userinclude {
    40         color: darkorange;
    41       }
    42       a.c2html-userinclude {
    43         color: darkorange;
    44         text-decoration: underline;
    45       }
    46     </style>
    47   </head>
    48   <body>

mercurial