aboutsummaryrefslogtreecommitdiff
path: root/imports/codemirror/mode/css/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'imports/codemirror/mode/css/index.html')
-rwxr-xr-ximports/codemirror/mode/css/index.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/imports/codemirror/mode/css/index.html b/imports/codemirror/mode/css/index.html
new file mode 100755
index 00000000..49934346
--- /dev/null
+++ b/imports/codemirror/mode/css/index.html
@@ -0,0 +1,55 @@
1<!doctype html>
2<html>
3 <head>
4 <title>CodeMirror: CSS mode</title>
5 <link rel="stylesheet" href="../../lib/codemirror.css">
6 <script src="../../lib/codemirror.js"></script>
7 <script src="css.js"></script>
8 <style>.CodeMirror {background: #f8f8f8;}</style>
9 <link rel="stylesheet" href="../../doc/docs.css">
10 </head>
11 <body>
12 <h1>CodeMirror: CSS mode</h1>
13 <form><textarea id="code" name="code">
14/* Some example CSS */
15
16@import url("something.css");
17
18body {
19 margin: 0;
20 padding: 3em 6em;
21 font-family: tahoma, arial, sans-serif;
22 color: #000;
23}
24
25#navigation a {
26 font-weight: bold;
27 text-decoration: none !important;
28}
29
30h1 {
31 font-size: 2.5em;
32}
33
34h2 {
35 font-size: 1.7em;
36}
37
38h1:before, h2:before {
39 content: "::";
40}
41
42code {
43 font-family: courier, monospace;
44 font-size: 80%;
45 color: #418A8A;
46}
47</textarea></form>
48 <script>
49 var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
50 </script>
51
52 <p><strong>MIME types defined:</strong> <code>text/css</code>.</p>
53
54 </body>
55</html>