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

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

mercurial