1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>The source code</title>
- <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
- <style type="text/css">
- .highlight { display: block; background-color: #ddd; }
- </style>
- <script type="text/javascript">
- function highlight() {
- document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
- }
- </script>
- </head>
- <body onload="prettyPrint(); highlight();">
- <pre class="prettyprint lang-js">//background
- $boundlist-background-color: #fff !default;
- //borders
- $boundlist-border-color: adjust-color($base-color, $hue: 0.58deg, $saturation: 25.146%, $lightness: -6.471%) !default;
- $boundlist-border-width: 1px !default;
- $boundlist-border-style: solid !default;
- $boundlist-item-padding: 2px !default;
- $boundlist-item-border-width: 1px !default;
- $boundlist-item-border-style: dotted !default;
- $boundlist-item-border-color: $boundlist-background-color !default;
- $boundlist-item-over-border-color: adjust-color($base-color, $hue: 6.952deg, $saturation: 5.848%, $lightness: -6.471%) !default;
- $boundlist-item-selected-border-color: darken($boundlist-item-over-border-color, 5) !default;
- $boundlist-item-over-background-color: adjust-color($base-color, $hue: 3.188deg, $saturation: 0.542%, $lightness: 7.843%) !default;
- $boundlist-item-selected-background-color: darken($boundlist-item-over-background-color, 5) !default;
- </pre>
- </body>
- </html>
|