PluginProbe ʕ •ᴥ•ʔ
SiteOrigin CSS / 1.0.2
SiteOrigin CSS v1.0.2
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 / sass / index.html
so-css / lib / codemirror / mode / sass Last commit date
index.html 11 years ago sass.js 11 years ago sass.min.js 11 years ago
index.html
67 lines
1 <!doctype html>
2
3 <title>CodeMirror: Sass 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 <script src="../../lib/codemirror.js"></script>
9 <script src="../../addon/edit/matchbrackets.js"></script>
10 <script src="sass.js"></script>
11 <style>.CodeMirror {border: 1px solid #ddd; font-size:12px; height: 400px}</style>
12 <div id=nav>
13 <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
14
15 <ul>
16 <li><a href="../../index.html">Home</a>
17 <li><a href="../../doc/manual.html">Manual</a>
18 <li><a href="https://github.com/codemirror/codemirror">Code</a>
19 </ul>
20 <ul>
21 <li><a href="../index.html">Language modes</a>
22 <li><a class=active href="#">Sass</a>
23 </ul>
24 </div>
25
26 <article>
27 <h2>Sass mode</h2>
28 <form><textarea id="code" name="code">// Variable Definitions
29
30 $page-width: 800px
31 $sidebar-width: 200px
32 $primary-color: #eeeeee
33
34 // Global Attributes
35
36 body
37 font:
38 family: sans-serif
39 size: 30em
40 weight: bold
41
42 // Scoped Styles
43
44 #contents
45 width: $page-width
46 #sidebar
47 float: right
48 width: $sidebar-width
49 #main
50 width: $page-width - $sidebar-width
51 background: $primary-color
52 h2
53 color: blue
54
55 #footer
56 height: 200px
57 </textarea></form>
58 <script>
59 var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
60 lineNumbers : true,
61 matchBrackets : true
62 });
63 </script>
64
65 <p><strong>MIME types defined:</strong> <code>text/x-sass</code>.</p>
66 </article>
67