PluginProbe ʕ •ᴥ•ʔ
SiteOrigin CSS / 1.0.1
SiteOrigin CSS v1.0.1
1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.10 1.5.11 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0
so-css / lib / codemirror / mode / css / index.html
so-css / lib / codemirror / mode / css Last commit date
css.js 11 years ago css.min.js 11 years ago index.html 11 years ago less.html 11 years ago less_test.js 11 years ago less_test.min.js 11 years ago scss.html 11 years ago scss_test.js 11 years ago scss_test.min.js 11 years ago test.js 11 years ago test.min.js 11 years ago
index.html
76 lines
1 <!doctype html>
2
3 <title>CodeMirror: CSS mode</title>
4 <meta charset="utf-8"/>
5 <link rel=stylesheet href="../../doc/docs.css">
6
7 <link rel="stylesheet" href="../../lib/codemirror.css">
8 <link rel="stylesheet" href="../../addon/hint/show-hint.css">
9 <script src="../../lib/codemirror.js"></script>
10 <script src="css.js"></script>
11 <script src="../../addon/hint/show-hint.js"></script>
12 <script src="../../addon/hint/css-hint.js"></script>
13 <style>.CodeMirror {background: #f8f8f8;}</style>
14 <div id=nav>
15 <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
16
17 <ul>
18 <li><a href="../../index.html">Home</a>
19 <li><a href="../../doc/manual.html">Manual</a>
20 <li><a href="https://github.com/codemirror/codemirror">Code</a>
21 </ul>
22 <ul>
23 <li><a href="../index.html">Language modes</a>
24 <li><a class=active href="#">CSS</a>
25 </ul>
26 </div>
27
28 <article>
29 <h2>CSS mode</h2>
30 <form><textarea id="code" name="code">
31 /* Some example CSS */
32
33 @import url("something.css");
34
35 body {
36 margin: 0;
37 padding: 3em 6em;
38 font-family: tahoma, arial, sans-serif;
39 color: #000;
40 }
41
42 #navigation a {
43 font-weight: bold;
44 text-decoration: none !important;
45 }
46
47 h1 {
48 font-size: 2.5em;
49 }
50
51 h2 {
52 font-size: 1.7em;
53 }
54
55 h1:before, h2:before {
56 content: "::";
57 }
58
59 code {
60 font-family: courier, monospace;
61 font-size: 80%;
62 color: #418A8A;
63 }
64 </textarea></form>
65 <script>
66 var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
67 extraKeys: {"Ctrl-Space": "autocomplete"},
68 });
69 </script>
70
71 <p><strong>MIME types defined:</strong> <code>text/css</code>, <code>text/x-scss</code> (<a href="scss.html">demo</a>), <code>text/x-less</code> (<a href="less.html">demo</a>).</p>
72
73 <p><strong>Parsing/Highlighting Tests:</strong> <a href="../../test/index.html#css_*">normal</a>, <a href="../../test/index.html#verbose,css_*">verbose</a>.</p>
74
75 </article>
76