-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SassDocMeister</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="wrapper" role="main">
<section class="half">
<textarea id="sass" class="textearea" autofocus>/// Returns the specificity map or value of given simple/complex/multiple selector(s).
/// @access public
/// @param {List | String} $initial-selector - selector returned by '&'
/// @param {Bool} $integer - output specificity as integer? (default: false)
/// @return {Map | Number} specificity map or specificity value represented as integer
@function specificity($selector, $integer) {}
</textarea>
<header class="header">Sass code</header>
</section>
<section class="half">
<textarea id="json" class="textearea" readonly></textarea>
<header class="header">JSON structure</header>
</section>
</div>
<script src="js/main.js"></script>
</body>
</html>