├── public ├── images │ └── image.png ├── css │ ├── github-gist.css │ ├── chinese-article.css │ └── bootstrap-grid-and-display.css └── js │ └── highlight.pack.js ├── package.json ├── gulpfile.js ├── README.md ├── LICENSE ├── .gitignore ├── src └── chinese-article.less ├── markdown-here-css ├── sample-1 │ ├── index.html │ └── md.css ├── sample-2 │ ├── index.html │ └── md.css ├── sample-3 │ ├── index.html │ └── md.css ├── sample-4 │ ├── index.html │ └── md.css └── sample-5 │ ├── index.html │ └── md.css └── index.html /public/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xugy0926/chinese-markdown-css/HEAD/public/images/image.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chinese-article", 3 | "version": "0.0.1", 4 | "description": "适合显示中文的CSS", 5 | "author": "XuGaoYang", 6 | "license": "MIT", 7 | "homepage": "https://xugy0926.github.io/chinese-markdown-css/", 8 | "main": "gulpfile.js", 9 | "dependencies": {}, 10 | "devDependencies": { 11 | "browser-sync": "^2.10.0", 12 | "gulp": "^3.9.0", 13 | "gulp-less": "^3.0.5", 14 | "gulp-rename": "^1.2.2", 15 | "gulp-minify-css": "^1.2.2", 16 | "gulp-uglify": "^1.5.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'), 2 | less = require('gulp-less'), 3 | uglify = require('gulp-uglify'), 4 | browserSync = require('browser-sync').create(), 5 | minifycss = require('gulp-minify-css'), 6 | rename = require('gulp-rename'), 7 | reload = browserSync.reload; 8 | 9 | gulp.task('less', function() { 10 | gulp 11 | .src('src/*.less') 12 | .pipe(less()) 13 | .pipe(minifycss()) 14 | .pipe(gulp.dest('public/css')) 15 | .pipe(reload({ stream: true })); 16 | }); 17 | gulp.task('browser-sync', ['less'], function() { 18 | browserSync.init({ 19 | server: { 20 | baseDir: './' 21 | } 22 | }); 23 | gulp.watch('src/*.less', ['less']); 24 | gulp.watch('*.html').on('change', reload); 25 | }); 26 | gulp.task('default', ['browser-sync'], function() { 27 | console.log('Mission Complete'); 28 | }); 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 这是一套适合显示中文文章的CSS,适合直接使用markdown写文章的项目。 2 | 3 | [主页](https://xugy0926.github.io/chinese-markdown-css/) 4 | 5 | ## 使用 6 | 7 | 首先在head中引用chinese-article.css 8 | 9 | ```html 10 | 11 | ``` 12 | 13 | 之后需要在文章的最外层div标签引入Class 14 | 15 | ```Html 16 |
17 | //文章内容 18 |
19 | ``` 20 | 21 | 如果要显示代码样式,引入下列样式 22 | 23 | ```Html 24 | 25 | 26 | 27 | ``` 28 | 29 | ## 编译方式 30 | 31 | 如果你想fork并自定义项目,需要重新编译并生成新的 chinese-article.css 文件。 32 | 33 | 确保全局安装了gulp 34 | ```Sh 35 | $ npm install -g gulp 36 | ``` 37 | 38 | 执行项目 39 | ```Sh 40 | $ npm isntall 41 | $ gulp 42 | ``` 43 | 44 | ## 公众号模板 45 | 46 | https://github.com/xugy0926/chinese-markdown-css/tree/master/markdown-here-css 47 | -------------------------------------------------------------------------------- /public/css/github-gist.css: -------------------------------------------------------------------------------- 1 | .hljs { 2 | display: block; 3 | background: white; 4 | padding: 0.5em; 5 | color: #333333; 6 | overflow-x: auto; 7 | } 8 | 9 | .hljs-comment, 10 | .hljs-meta { 11 | color: #969896; 12 | } 13 | 14 | .hljs-string, 15 | .hljs-variable, 16 | .hljs-template-variable, 17 | .hljs-strong, 18 | .hljs-emphasis, 19 | .hljs-quote { 20 | color: #df5000; 21 | } 22 | 23 | .hljs-keyword, 24 | .hljs-selector-tag, 25 | .hljs-type { 26 | color: #a71d5d; 27 | } 28 | 29 | .hljs-literal, 30 | .hljs-symbol, 31 | .hljs-bullet, 32 | .hljs-attribute { 33 | color: #0086b3; 34 | } 35 | 36 | .hljs-section, 37 | .hljs-name { 38 | color: #63a35c; 39 | } 40 | 41 | .hljs-tag { 42 | color: #333333; 43 | } 44 | 45 | .hljs-title, 46 | .hljs-attr, 47 | .hljs-selector-id, 48 | .hljs-selector-class, 49 | .hljs-selector-attr, 50 | .hljs-selector-pseudo { 51 | color: #795da3; 52 | } 53 | 54 | .hljs-addition { 55 | color: #55a532; 56 | background-color: #eaffea; 57 | } 58 | 59 | .hljs-deletion { 60 | color: #bd2c00; 61 | background-color: #ffecec; 62 | } 63 | 64 | .hljs-link { 65 | text-decoration: underline; 66 | } 67 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 xugaoyang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /public/css/chinese-article.css: -------------------------------------------------------------------------------- 1 | *{margin:0;padding:0}.chinese-article{-webkit-font-smoothing:antialiased;font-size:16px;position:relative;padding:0}.chinese-article h1{font-weight:400;font-size:32px;margin:1.2em 0}.chinese-article h2{font-weight:400;font-size:25px;border-bottom:1px solid #ccc;padding:10px 5px;margin:1.2em 0}.chinese-article h4,.chinese-article h5,.chinese-article h6,.chinese-article strong,.chinese-article table th{font-weight:700}.chinese-article h3{font-weight:700;font-size:20px;padding:8px 1px;margin:1.2em 0}.chinese-article h4{font-size:18px;margin:1em 0}.chinese-article h5{font-size:16px;margin:1em 0}.chinese-article h6{font-size:14px;margin:1em 0}.chinese-article p{line-height:1.5;margin:1em 0;word-break:break-word}.chinese-article a{color:#2ecc71;text-decoration:none}.chinese-article a:hover{color:#2ecc71}.chinese-article code{border:1px solid #ddd;border-radius:3px;font-family:Consolas,Monaco,'Andale Mono',monospace;font-size:14px;background-color:#f1f1f1;padding:.12em .2em;vertical-align:middle;margin:0 1px}.chinese-article pre{box-sizing:border-box;border:1px solid #ddd;border-radius:3px;background-color:#f1f1f1;display:block;width:100%;padding:1em;margin:1em 0;overflow:auto}.chinese-article pre code{padding:0;margin:0;border:0;line-height:1.5}.chinese-article img{max-width:100%;height:auto}.chinese-article ol,.chinese-article ul{font-size:15px;box-sizing:border-box;padding:10px 0 10px 20px;width:100%}.chinese-article ul li{list-style:disc}.chinese-article ol li{list-style:decimal}.chinese-article ol li,.chinese-article ul li{line-height:1.5;padding:5px}.chinese-article blockquote{width:100%;background-color:#f1f1f1;box-sizing:border-box;line-height:1.5;border-left:5px #2ecc71 solid;color:#555;font-size:14px;padding:1px 3px 1px 10px}.chinese-article em{font-style:italic}.chinese-article hr{width:100%;border:1px solid #888}.chinese-article table{width:100%;margin-bottom:20px;border:1px solid #ddd;border-collapse:collapse}.chinese-article table td,.chinese-article table th{padding:8px;border-left:1px solid #ddd;border-top:1px solid #ddd}.chinese-article .heimu{cursor:default;background-color:#000!important;color:#000!important}.chinese-article .heimu:hover{color:#fff!important}.chinese-article .chinese-article-list{box-sizing:border-box;display:inline-block;padding:0;position:absolute;top:0;z-index:10;border-left:2px solid #2ecc71}.chinese-article .chinese-article-list ul{padding:5px 10px}.chinese-article .chinese-article-list ul li{list-style:none;font-size:14px}.chinese-article .chinese-article-list ul li a{color:#030;text-decoration:none}.chinese-article .chinese-article-list ul li a:hover{color:#2ecc71} -------------------------------------------------------------------------------- /src/chinese-article.less: -------------------------------------------------------------------------------- 1 | //@font:"lucida grande", "lucida sans unicode", lucida, Arial, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; 2 | @mainColor : #2ecc71; 3 | @fontColor : #000; 4 | @blockQuoteFontColor : #555; 5 | @blockQuoteBgColor : #f1f1f1; 6 | @codeFontColor : #2ecc71; 7 | @codeBgColor : #f1f1f1; 8 | @codeFont : Consolas, Monaco, 'Andale Mono', monospace; 9 | @tableBorder: 1px solid #ddd; 10 | * { 11 | margin: 0; 12 | padding: 0; 13 | 14 | } 15 | .chinese-article { 16 | -webkit-font-smoothing: antialiased; 17 | font-size: 16px; 18 | position: relative; 19 | padding: 0px 0px; 20 | h1 { 21 | font-weight: normal; 22 | font-size: 32px; 23 | margin: 1.2em 0; 24 | } 25 | h2 { 26 | font-weight: normal; 27 | font-size: 25px; 28 | border-bottom: 1px solid #ccc; 29 | padding: 10px 5px; 30 | margin: 1.2em 0; 31 | } 32 | h3 { 33 | font-weight: bold; 34 | font-size: 20px; 35 | padding: 8px 1px; 36 | margin: 1.2em 0; 37 | } 38 | h4 { 39 | font-size: 18px; 40 | font-weight: bold; 41 | margin: 1em 0; 42 | } 43 | h5 { 44 | font-size: 16px; 45 | font-weight: bold; 46 | margin: 1em 0; 47 | } 48 | h6 { 49 | font-size: 14px; 50 | font-weight: bold; 51 | margin: 1em 0; 52 | } 53 | p { 54 | line-height: 1.5; 55 | margin: 1em 0; 56 | word-break: break-word; 57 | } 58 | a { 59 | color: @mainColor; 60 | text-decoration: none; 61 | } 62 | a:hover { 63 | color: @codeFontColor; 64 | } 65 | code { 66 | border: 1px solid #ddd; 67 | border-radius: 3px; 68 | font-family: @codeFont; 69 | font-size: 14px; 70 | //color: @codeFontColor; 71 | background-color: @codeBgColor; 72 | padding: 0.12em 0.2em; 73 | vertical-align: middle; 74 | margin: 0 1px; 75 | } 76 | pre { 77 | box-sizing: border-box; 78 | border: 1px solid #ddd; 79 | border-radius: 3px; 80 | background-color: @codeBgColor; 81 | display: block; 82 | width: 100%; 83 | padding: 1em; 84 | margin: 1em 0; 85 | overflow: auto; 86 | code { 87 | padding: 0; 88 | margin: 0; 89 | border: 0; 90 | line-height: 1.5; 91 | } 92 | } 93 | img { 94 | max-width: 100%; 95 | height: auto; 96 | } 97 | ul, 98 | ol { 99 | font-size: 15px; 100 | box-sizing: border-box; 101 | padding: 10px 0 10px 20px; 102 | width: 100%; 103 | } 104 | ul li { 105 | list-style: disc; 106 | } 107 | ol li { 108 | list-style: decimal; 109 | } 110 | ul li, 111 | ol li { 112 | line-height: 1.5; 113 | padding: 5px; 114 | } 115 | blockquote { 116 | width: 100%; 117 | background-color: @blockQuoteBgColor; 118 | box-sizing: border-box; 119 | padding-left: 10px; 120 | padding-right: 3px; 121 | padding-top: 1px; 122 | padding-bottom: 1px; 123 | line-height: 1.5; 124 | border-left: 5px @mainColor solid; 125 | color: @blockQuoteFontColor; 126 | font-size: 14px; 127 | } 128 | strong { 129 | font-weight: bold; 130 | } 131 | em { 132 | font-style: italic; 133 | } 134 | hr { 135 | width: 100%; 136 | border: 1px solid #888; 137 | } 138 | table { 139 | width: 100%; 140 | margin-bottom: 20px; 141 | border: @tableBorder; 142 | border-collapse: collapse; 143 | th { 144 | font-weight: bold; 145 | } 146 | td, 147 | th { 148 | padding: 8px; 149 | border-left: @tableBorder; 150 | border-top: @tableBorder; 151 | } 152 | } 153 | .heimu { 154 | cursor: default; 155 | background-color: #000 !important; 156 | color: #000 !important; 157 | &:hover { 158 | color: #fff !important; 159 | } 160 | } 161 | .chinese-article-list { 162 | box-sizing: border-box; 163 | display: inline-block; 164 | padding: 0px; 165 | position: absolute; 166 | top: 0; 167 | z-index: 10; 168 | border-left: 2px solid @mainColor; 169 | ul { 170 | padding: 5px 10px; 171 | li { 172 | list-style: none; 173 | font-size: 14px; 174 | a { 175 | color: #003300; 176 | text-decoration: none; 177 | } 178 | a:hover { 179 | color: @codeFontColor; 180 | } 181 | } 182 | } 183 | } 184 | } 185 | -------------------------------------------------------------------------------- /markdown-here-css/sample-1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | chinese article Demo 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |

Author: 19 | XuGaoYang 20 |

21 |

使用说明与示例

22 |

这是一套适合显示中文文章的CSS,适合直接使用 23 | markdown写文章的项目。

24 |

使用说明

25 |

首先在head中引用 26 | chinese-article.css

27 |
<link rel="stylesheet" href="./public/css/chinese-article.css"/> 
28 |

之后需要在文章的最外层div标签引入class

29 |
<div class="chinese-article">
 30 |   //文章内容
 31 | </div>
32 |

如果要显示代码样式,引入下列样式

33 |
<link rel="stylesheet" href="./public/css/github-gist.css"/>
 34 | <script src="./public/js/highlight.pack.js"></script>
 35 | <script>hljs.initHighlightingOnLoad();<script>
36 |

样式一览

37 |

标题

38 |

这是h4

39 |
这是h5
40 |
这是h6
41 |

链接

42 | 这是a链接 43 |

字体

44 | 这是斜体 45 | 这是粗体 46 | 47 | 这是斜的粗体 48 | 49 |

图片

50 | 51 |

列表

52 |
    53 |
  • 列表1列表1列表1
  • 54 |
  • 列表2列表2
  • 55 |
  • 列表3
  • 56 |
57 |
    58 |
  1. 列表1列表1列表1
  2. 59 |
  3. 列表2列表2
  4. 60 |
  5. 列表3
  6. 61 |
62 |

引用

63 |
64 |

当您在使用gulp构建您的项目时,您只需要 require Browsersync 模块, 利用API 并进行 选项配置。 以下在 Bootstrap 2 中,我们对框架中的某些关键部分增加了对移动设备友好的样式。而在 65 | Bootstrap 3 中,我们重写了整个框架,使其一开始就是对移动设备友好的。这次不是简单的增加一些可选的针对移动设备的样式,而是直接融合进了框架的内核中。也就是说,Bootstrap 66 | 是移动设备优先的。针对移动设备的样式融合进了框架的每个角落,而不是增加一个额外的文件。

67 |
68 |

表格

69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 |
First NameLast NameUsername
MarkOtto@mdl
JacobThornton@fat
Larrythe Bird@twitter
95 |

分割线

96 |
97 |

代码

98 |
var x = 1;
 99 | var y = 2;
100 | var z = x + y;
101 | 
102 |

Author: 103 | XuGaoYang 104 |

105 |
106 |
107 |
108 |
109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /markdown-here-css/sample-2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | chinese article Demo 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |

Author: 19 | XuGaoYang 20 |

21 |

使用说明与示例

22 |

这是一套适合显示中文文章的CSS,适合直接使用 23 | markdown写文章的项目。

24 |

使用说明

25 |

首先在head中引用 26 | chinese-article.css

27 |
<link rel="stylesheet" href="./public/css/chinese-article.css"/> 
28 |

之后需要在文章的最外层div标签引入class

29 |
<div class="chinese-article">
 30 |   //文章内容
 31 | </div>
32 |

如果要显示代码样式,引入下列样式

33 |
<link rel="stylesheet" href="./public/css/github-gist.css"/>
 34 | <script src="./public/js/highlight.pack.js"></script>
 35 | <script>hljs.initHighlightingOnLoad();<script>
36 |

样式一览

37 |

标题

38 |

这是h4

39 |
这是h5
40 |
这是h6
41 |

链接

42 | 这是a链接 43 |

字体

44 | 这是斜体 45 | 这是粗体 46 | 47 | 这是斜的粗体 48 | 49 |

图片

50 | 51 |

列表

52 |
    53 |
  • 列表1列表1列表1
  • 54 |
  • 列表2列表2
  • 55 |
  • 列表3
  • 56 |
57 |
    58 |
  1. 列表1列表1列表1
  2. 59 |
  3. 列表2列表2
  4. 60 |
  5. 列表3
  6. 61 |
62 |

引用

63 |
64 |

当您在使用gulp构建您的项目时,您只需要 require Browsersync 模块, 利用API 并进行 选项配置。 以下在 Bootstrap 2 中,我们对框架中的某些关键部分增加了对移动设备友好的样式。而在 65 | Bootstrap 3 中,我们重写了整个框架,使其一开始就是对移动设备友好的。这次不是简单的增加一些可选的针对移动设备的样式,而是直接融合进了框架的内核中。也就是说,Bootstrap 66 | 是移动设备优先的。针对移动设备的样式融合进了框架的每个角落,而不是增加一个额外的文件。

67 |
68 |

表格

69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 |
First NameLast NameUsername
MarkOtto@mdl
JacobThornton@fat
Larrythe Bird@twitter
95 |

分割线

96 |
97 |

代码

98 |
var x = 1;
 99 | var y = 2;
100 | var z = x + y;
101 | 
102 |

Author: 103 | XuGaoYang 104 |

105 |
106 |
107 |
108 |
109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /markdown-here-css/sample-3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | chinese article Demo 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |

Author: 19 | XuGaoYang 20 |

21 |

使用说明与示例

22 |

这是一套适合显示中文文章的CSS,适合直接使用 23 | markdown写文章的项目。

24 |

使用说明

25 |

首先在head中引用 26 | chinese-article.css

27 |
<link rel="stylesheet" href="./public/css/chinese-article.css"/> 
28 |

之后需要在文章的最外层div标签引入class

29 |
<div class="chinese-article">
 30 |   //文章内容
 31 | </div>
32 |

如果要显示代码样式,引入下列样式

33 |
<link rel="stylesheet" href="./public/css/github-gist.css"/>
 34 | <script src="./public/js/highlight.pack.js"></script>
 35 | <script>hljs.initHighlightingOnLoad();<script>
36 |

样式一览

37 |

标题

38 |

这是h4

39 |
这是h5
40 |
这是h6
41 |

链接

42 | 这是a链接 43 |

字体

44 | 这是斜体 45 | 这是粗体 46 | 47 | 这是斜的粗体 48 | 49 |

图片

50 | 51 |

列表

52 |
    53 |
  • 列表1列表1列表1
  • 54 |
  • 列表2列表2
  • 55 |
  • 列表3
  • 56 |
57 |
    58 |
  1. 列表1列表1列表1
  2. 59 |
  3. 列表2列表2
  4. 60 |
  5. 列表3
  6. 61 |
62 |

引用

63 |
64 |

当您在使用gulp构建您的项目时,您只需要 require Browsersync 模块, 利用API 并进行 选项配置。 以下在 Bootstrap 2 中,我们对框架中的某些关键部分增加了对移动设备友好的样式。而在 65 | Bootstrap 3 中,我们重写了整个框架,使其一开始就是对移动设备友好的。这次不是简单的增加一些可选的针对移动设备的样式,而是直接融合进了框架的内核中。也就是说,Bootstrap 66 | 是移动设备优先的。针对移动设备的样式融合进了框架的每个角落,而不是增加一个额外的文件。

67 |
68 |

表格

69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 |
First NameLast NameUsername
MarkOtto@mdl
JacobThornton@fat
Larrythe Bird@twitter
95 |

分割线

96 |
97 |

代码

98 |
var x = 1;
 99 | var y = 2;
100 | var z = x + y;
101 | 
102 |

Author: 103 | XuGaoYang 104 |

105 |
106 |
107 |
108 |
109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /markdown-here-css/sample-4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | chinese article Demo 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |

Author: 19 | XuGaoYang 20 |

21 |

使用说明与示例

22 |

这是一套适合显示中文文章的CSS,适合直接使用 23 | markdown写文章的项目。

24 |

使用说明

25 |

首先在head中引用 26 | chinese-article.css

27 |
<link rel="stylesheet" href="./public/css/chinese-article.css"/> 
28 |

之后需要在文章的最外层div标签引入class

29 |
<div class="chinese-article">
 30 |   //文章内容
 31 | </div>
32 |

如果要显示代码样式,引入下列样式

33 |
<link rel="stylesheet" href="./public/css/github-gist.css"/>
 34 | <script src="./public/js/highlight.pack.js"></script>
 35 | <script>hljs.initHighlightingOnLoad();<script>
36 |

样式一览

37 |

标题

38 |

这是h4

39 |
这是h5
40 |
这是h6
41 |

链接

42 | 这是a链接 43 |

字体

44 | 这是斜体 45 | 这是粗体 46 | 47 | 这是斜的粗体 48 | 49 |

图片

50 | 51 |

列表

52 |
    53 |
  • 列表1列表1列表1
  • 54 |
  • 列表2列表2
  • 55 |
  • 列表3
  • 56 |
57 |
    58 |
  1. 列表1列表1列表1
  2. 59 |
  3. 列表2列表2
  4. 60 |
  5. 列表3
  6. 61 |
62 |

引用

63 |
64 |

当您在使用gulp构建您的项目时,您只需要 require Browsersync 模块, 利用API 并进行 选项配置。 以下在 Bootstrap 2 中,我们对框架中的某些关键部分增加了对移动设备友好的样式。而在 65 | Bootstrap 3 中,我们重写了整个框架,使其一开始就是对移动设备友好的。这次不是简单的增加一些可选的针对移动设备的样式,而是直接融合进了框架的内核中。也就是说,Bootstrap 66 | 是移动设备优先的。针对移动设备的样式融合进了框架的每个角落,而不是增加一个额外的文件。

67 |
68 |

表格

69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 |
First NameLast NameUsername
MarkOtto@mdl
JacobThornton@fat
Larrythe Bird@twitter
95 |

分割线

96 |
97 |

代码

98 |
var x = 1;
 99 | var y = 2;
100 | var z = x + y;
101 | 
102 |

Author: 103 | XuGaoYang 104 |

105 |
106 |
107 |
108 |
109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /markdown-here-css/sample-5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | chinese article Demo 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 |

Author: 19 | XuGaoYang 20 |

21 |

使用说明与示例

22 |

这是一套适合显示中文文章的CSS,适合直接使用 23 | markdown写文章的项目。

24 |

使用说明

25 |

首先在head中引用 26 | chinese-article.css

27 |
<link rel="stylesheet" href="./public/css/chinese-article.css"/> 
28 |

之后需要在文章的最外层div标签引入class

29 |
<div class="chinese-article">
 30 |   //文章内容
 31 | </div>
32 |

如果要显示代码样式,引入下列样式

33 |
<link rel="stylesheet" href="./public/css/github-gist.css"/>
 34 | <script src="./public/js/highlight.pack.js"></script>
 35 | <script>hljs.initHighlightingOnLoad();<script>
36 |

样式一览

37 |

标题

38 |

这是h4

39 |
这是h5
40 |
这是h6
41 |

链接

42 | 这是a链接 43 |

字体

44 | 这是斜体 45 | 这是粗体 46 | 47 | 这是斜的粗体 48 | 49 |

图片

50 | 51 |

列表

52 |
    53 |
  • 列表1列表1列表1
  • 54 |
  • 列表2列表2
  • 55 |
  • 列表3
  • 56 |
57 |
    58 |
  1. 列表1列表1列表1
  2. 59 |
  3. 列表2列表2
  4. 60 |
  5. 列表3
  6. 61 |
62 |

引用

63 |
64 |

当您在使用gulp构建您的项目时,您只需要 require Browsersync 模块, 利用API 并进行 选项配置。 以下在 Bootstrap 2 中,我们对框架中的某些关键部分增加了对移动设备友好的样式。而在 65 | Bootstrap 3 中,我们重写了整个框架,使其一开始就是对移动设备友好的。这次不是简单的增加一些可选的针对移动设备的样式,而是直接融合进了框架的内核中。也就是说,Bootstrap 66 | 是移动设备优先的。针对移动设备的样式融合进了框架的每个角落,而不是增加一个额外的文件。

67 |
68 |

表格

69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 |
First NameLast NameUsername
MarkOtto@mdl
JacobThornton@fat
Larrythe Bird@twitter
95 |

分割线

96 |
97 |

代码

98 |
var x = 1;
 99 | var y = 2;
100 | var z = x + y;
101 | 
102 |

Author: 103 | XuGaoYang 104 |

105 |
106 |
107 |
108 |
109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | chinese article Demo 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 |

Author: 22 | XuGaoYang 23 |

24 |

使用说明与示例

25 |

这是一套适合显示中文文章的CSS,适合直接使用 26 | markdown写文章的项目。

27 |

使用说明

28 |

首先在head中引用 29 | chinese-article.css

30 |
<link rel="stylesheet" href="./public/css/chinese-article.css"/> 
31 |

之后需要在文章的最外层div标签引入class

32 |
<div class="chinese-article">
 33 |   //文章内容
 34 | </div>
35 |

如果要显示代码样式,引入下列样式

36 |
<link rel="stylesheet" href="./public/css/github-gist.css"/>
 37 | <script src="./public/js/highlight.pack.js"></script>
 38 | <script>hljs.initHighlightingOnLoad();<script>
39 |

样式一览

40 |

标题

41 |

这是h4

42 |
这是h5
43 |
这是h6
44 |

链接

45 | 这是a链接 46 |

字体

47 | 这是斜体 48 | 这是粗体 49 | 50 | 这是斜的粗体 51 | 52 |

图片

53 | 54 |

列表

55 |
    56 |
  • 列表1列表1列表1
  • 57 |
  • 列表2列表2
  • 58 |
  • 列表3
  • 59 |
60 |
    61 |
  1. 列表1列表1列表1
  2. 62 |
  3. 列表2列表2
  4. 63 |
  5. 列表3
  6. 64 |
65 |

引用

66 |
67 |

当您在使用gulp构建您的项目时,您只需要 require Browsersync 模块, 利用API 并进行 选项配置。 以下在 Bootstrap 2 中,我们对框架中的某些关键部分增加了对移动设备友好的样式。而在 68 | Bootstrap 3 中,我们重写了整个框架,使其一开始就是对移动设备友好的。这次不是简单的增加一些可选的针对移动设备的样式,而是直接融合进了框架的内核中。也就是说,Bootstrap 69 | 是移动设备优先的。针对移动设备的样式融合进了框架的每个角落,而不是增加一个额外的文件。

70 |
71 |

表格

72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 |
First NameLast NameUsername
MarkOtto@mdl
JacobThornton@fat
Larrythe Bird@twitter
98 |

分割线

99 |
100 |

代码

101 |
var x = 1;
102 | var y = 2;
103 | var z = x + y;
104 | 
105 |

Author: 106 | XuGaoYang 107 |

108 |
109 |
110 |
111 |
112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /markdown-here-css/sample-3/md.css: -------------------------------------------------------------------------------- 1 | /* 2 | * NOTE: 3 | * - The use of browser-specific styles (-moz-, -webkit-) should be avoided. 4 | * If used, they may not render correctly for people reading the email in 5 | * a different browser than the one from which the email was sent. 6 | * - The use of state-dependent styles (like a:hover) don't work because they 7 | * don't match at the time the styles are made explicit. (In email, styles 8 | * must be explicitly applied to all elements -- stylesheets get stripped.) 9 | */ 10 | 11 | /* This is the overall wrapper, it should be treated as the `body` section. */ 12 | .markdown-here-wrapper { 13 | font-size: 16px; 14 | line-height: 1.8em; 15 | letter-spacing: 0.1em; 16 | } 17 | 18 | /* To add site specific rules, you can use the `data-md-url` attribute that we 19 | add to the wrapper element. Note that rules like this are used depending 20 | on the URL you're *sending* from, not the URL where the recipient views it. 21 | */ 22 | /* .markdown-here-wrapper[data-md-url*="mail.yahoo."] ul { color: red; } */ 23 | 24 | pre, code { 25 | font-size: 14px; 26 | font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace; 27 | margin: auto 5px; 28 | } 29 | 30 | code { 31 | white-space: pre-wrap; 32 | border-radius: 2px; 33 | display: inline; /* added to fix Yahoo block display of inline code */ 34 | } 35 | 36 | pre { 37 | font-size: 15px; 38 | line-height: 1.4em; 39 | display: block !important; 40 | } 41 | 42 | pre code { 43 | white-space: pre; 44 | overflow: auto; /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */ 45 | border-radius: 3px; 46 | padding: 0.5em 0.7em; 47 | display: block !important; /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */ 48 | } 49 | 50 | /* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlighted 51 | code look non-monospace. This rule will override it. */ 52 | .markdown-here-wrapper[data-md-url*="wordpress."] code span { 53 | font: inherit; 54 | } 55 | 56 | /* Wordpress adds a grey background to `pre` elements that doesn't go well with 57 | our syntax highlighting. */ 58 | .markdown-here-wrapper[data-md-url*="wordpress."] pre { 59 | background-color: transparent; 60 | } 61 | 62 | strong, b { 63 | color: #bf360c; 64 | } 65 | 66 | em, i { 67 | color: #009688; 68 | } 69 | 70 | hr { 71 | border: 1px solid #bf360c; 72 | margin: 1.5em auto; 73 | } 74 | 75 | /* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing. 76 | Note that we only use a top margin and not a bottom margin -- this prevents the 77 | "blank line" look at the top of the email (issue #243). 78 | */ 79 | p { 80 | /* !important is needed here because Hotmail/Outlook.com uses !important to 81 | kill the margin in

. We need this to win. */ 82 | margin: 1.5em 5px !important; 83 | } 84 | 85 | table, pre, dl, blockquote, q, ul, ol { 86 | margin: 10px 5px; 87 | } 88 | 89 | ul, ol { 90 | padding-left: 15px; 91 | } 92 | 93 | li { 94 | margin: 10px; 95 | } 96 | 97 | /* Space paragraphs in a list the same as the list itself. */ 98 | li p { 99 | /* Needs !important to override rule above. */ 100 | margin: 10px 0 !important; 101 | } 102 | 103 | /* Smaller spacing for sub-lists */ 104 | ul ul, ul ol, ol ul, ol ol { 105 | margin: 0; 106 | padding-left: 10px; 107 | } 108 | 109 | /* Use Roman numerals for sub-ordered-lists. (Like Github.) */ 110 | ol ol, ul ol { 111 | list-style-type: circle; 112 | } 113 | 114 | /* Use letters for sub-sub-ordered lists. (Like Github.) */ 115 | ul ul ol, ul ol ol, ol ul ol, ol ol ol { 116 | list-style-type: circle; 117 | } 118 | 119 | dl { 120 | padding: 0; 121 | } 122 | 123 | dl dt { 124 | font-size: 1em; 125 | font-weight: bold; 126 | font-style: italic; 127 | } 128 | 129 | dl dd { 130 | margin: 0 0 10px; 131 | padding: 0 10px; 132 | } 133 | 134 | blockquote, q { 135 | border-left: 2px solid #009688; 136 | padding: 0 10px; 137 | color: #777; 138 | quotes: none; 139 | margin-left: 1em; 140 | } 141 | 142 | blockquote::before, blockquote::after, q::before, q::after { 143 | content: none; 144 | } 145 | 146 | h1, h2, h3, h4, h5, h6 { 147 | margin: 20px 0 10px; 148 | padding: 0; 149 | font-style: bold !important; 150 | color: #009688 !important; 151 | text-align: center !important; 152 | margin: 1.5em 5px !important; 153 | padding: 0.5em 1em !important; 154 | } 155 | 156 | h1 { 157 | font-size: 26px !important; 158 | border-bottom: 1px solid #ddd !important; 159 | } 160 | 161 | h2 { 162 | font-size: 20px !important; 163 | border-bottom: 1px solid #eee !important; 164 | } 165 | 166 | h3 { 167 | font-size: 18px; 168 | } 169 | 170 | h4 { 171 | font-size: 16px; 172 | } 173 | 174 | h5 { 175 | font-size: 14px; 176 | } 177 | 178 | h6 { 179 | font-size: 12px; 180 | } 181 | 182 | table { 183 | padding: 0; 184 | border-collapse: collapse; 185 | border-spacing: 0; 186 | font-size: 1em; 187 | font: inherit; 188 | border: 0; 189 | margin: 0 auto; 190 | } 191 | 192 | tbody { 193 | margin: 0; 194 | padding: 0; 195 | border: 0; 196 | } 197 | 198 | table tr { 199 | border: 0; 200 | border-top: 1px solid #CCC; 201 | background-color: white; 202 | margin: 0; 203 | padding: 0; 204 | } 205 | 206 | table tr:nth-child(2n) { 207 | background-color: #F8F8F8; 208 | } 209 | 210 | table tr th, table tr td { 211 | font-size: 16px; 212 | border: 1px solid #CCC; 213 | margin: 0; 214 | padding: 5px 10px; 215 | } 216 | 217 | table tr th { 218 | font-weight: bold; 219 | color: #eee; 220 | border: 1px solid #009688; 221 | background-color: #009688; 222 | } 223 | -------------------------------------------------------------------------------- /markdown-here-css/sample-1/md.css: -------------------------------------------------------------------------------- 1 | /* 2 | * NOTE: 3 | * - The use of browser-specific styles (-moz-, -webkit-) should be avoided. 4 | * If used, they may not render correctly for people reading the email in 5 | * a different browser than the one from which the email was sent. 6 | * - The use of state-dependent styles (like a:hover) don't work because they 7 | * don't match at the time the styles are made explicit. (In email, styles 8 | * must be explicitly applied to all elements -- stylesheets get stripped.) 9 | */ 10 | 11 | /* This is the overall wrapper, it should be treated as the `body` section. */ 12 | .markdown-here-wrapper { 13 | font-size: 16px; 14 | line-height: 1.8em; 15 | letter-spacing: 0em; 16 | } 17 | 18 | /* To add site specific rules, you can use the `data-md-url` attribute that we 19 | add to the wrapper element. Note that rules like this are used depending 20 | on the URL you're *sending* from, not the URL where the recipient views it. 21 | */ 22 | /* .markdown-here-wrapper[data-md-url*="mail.yahoo."] ul { color: red; } */ 23 | 24 | pre, code { 25 | font-size: 14px; 26 | font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace; 27 | margin: auto 5px; 28 | } 29 | 30 | code { 31 | white-space: pre-wrap; 32 | border-radius: 2px; 33 | display: inline; 34 | } 35 | 36 | pre { 37 | font-size: 15px; 38 | line-height: 1.4em; 39 | display: block !important; 40 | } 41 | 42 | pre code { 43 | white-space: pre; 44 | overflow: auto; /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */ 45 | border-radius: 3px; 46 | padding: 1em 1em; 47 | display: block !important; /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */ 48 | } 49 | 50 | strong, b { 51 | color: none; 52 | } 53 | 54 | em, i { 55 | color: #009688; 56 | } 57 | 58 | hr { 59 | border: 1px solid #BF360C; 60 | margin: 1.5em auto; 61 | } 62 | 63 | /* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlighted 64 | code look non-monospace. This rule will override it. */ 65 | .markdown-here-wrapper[data-md-url*="wordpress."] code span { 66 | font: inherit; 67 | } 68 | 69 | /* Wordpress adds a grey background to `pre` elements that doesn't go well with 70 | our syntax highlighting. */ 71 | .markdown-here-wrapper[data-md-url*="wordpress."] pre { 72 | background-color: transparent; 73 | } 74 | 75 | /* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing. 76 | Note that we only use a top margin and not a bottom margin -- this prevents the 77 | "blank line" look at the top of the email (issue #243). 78 | */ 79 | p { 80 | /* !important is needed here because Hotmail/Outlook.com uses !important to 81 | kill the margin in

. We need this to win. */ 82 | margin: 1.5em 5px !important; 83 | padding-right: 10px !important; 84 | padding-left: 7px !important; 85 | } 86 | 87 | table, pre, dl, blockquote, q, ul, ol { 88 | margin: 10px 5px; 89 | } 90 | 91 | ul, ol { 92 | padding-left: 15px; 93 | } 94 | 95 | li { 96 | margin: 10px 10px; 97 | } 98 | 99 | /* Space paragraphs in a list the same as the list itself. */ 100 | li p { 101 | /* Needs !important to override rule above. */ 102 | margin: 10em 0 !important; 103 | } 104 | 105 | /* Smaller spacing for sub-lists */ 106 | ul ul, ul ol, ol ul, ol ol { 107 | margin: 0; 108 | padding-top: 2px !important; 109 | } 110 | 111 | /* Use Roman numerals for sub-ordered-lists. (Like Github.) */ 112 | ol ol, ul ol { 113 | list-style-type: circle; 114 | } 115 | 116 | /* Use letters for sub-sub-ordered lists. (Like Github.) */ 117 | ul ul ol, ul ol ol, ol ul ol, ol ol ol { 118 | list-style-type: circle; 119 | } 120 | 121 | dl { 122 | padding: 0; 123 | } 124 | 125 | dl dt { 126 | font-size: 1em; 127 | font-weight: bold; 128 | font-style: italic; 129 | } 130 | 131 | dl dd { 132 | margin: 0 0 10px; 133 | padding: 0 10px; 134 | } 135 | 136 | blockquote, q { 137 | border-left: 3px solid #e53245; 138 | padding: 0 10px; 139 | color: #777; 140 | quotes: 2px; 141 | margin: 0 1em; 142 | } 143 | 144 | blockquote::before, blockquote::after, q::before, q::after { 145 | content: none; 146 | } 147 | 148 | h1, h2, h3, h4, h5, h6 { 149 | margin: 1.3em 0 1em; 150 | padding: 0; 151 | font-weight: bold; 152 | text-align: center !important; 153 | color: #e53245 !important; 154 | } 155 | 156 | h1 { 157 | font-size: 24px !important; 158 | border-bottom: 1px solid #ddd !important; 159 | } 160 | 161 | h2 { 162 | font-size: 1.5em !important; 163 | border-bottom: 1px solid #eee !important; 164 | } 165 | 166 | h3 { 167 | font-size: 18px; 168 | } 169 | 170 | h4 { 171 | font-size: 16px; 172 | } 173 | 174 | h5 { 175 | font-size: 1em; 176 | } 177 | 178 | h6 { 179 | font-size: 1em; 180 | color: #777; 181 | } 182 | 183 | table { 184 | text-align: justify !important; 185 | padding: 0; 186 | border-collapse: collapse; 187 | border-spacing: 0; 188 | font-size: 1em; 189 | font: inherit; 190 | border: 0; 191 | margin: 0 auto; 192 | text-align: center !important; 193 | } 194 | 195 | tbody { 196 | margin: 0; 197 | padding: 0; 198 | border: 0; 199 | } 200 | 201 | table tr { 202 | border: 0; 203 | border-top: 1px solid #CCC; 204 | background-color: white; 205 | margin: 0; 206 | padding: 0; 207 | } 208 | 209 | table tr:nth-child(2n) { 210 | background-color: #F8F8F8; 211 | } 212 | 213 | table tr th, table tr td { 214 | font-size: 16px; 215 | border: 1px solid #CCC; 216 | margin: 0; 217 | padding: 5px 10px; 218 | } 219 | 220 | table tr th { 221 | font-weight: bold; 222 | color: #eee; 223 | border: 1px solid #009688; 224 | background-color: #009688; 225 | } 226 | -------------------------------------------------------------------------------- /markdown-here-css/sample-2/md.css: -------------------------------------------------------------------------------- 1 | /* 2 | * NOTE: 3 | * - The use of browser-specific styles (-moz-, -webkit-) should be avoided. 4 | * If used, they may not render correctly for people reading the email in 5 | * a different browser than the one from which the email was sent. 6 | * - The use of state-dependent styles (like a:hover) don't work because they 7 | * don't match at the time the styles are made explicit. (In email, styles 8 | * must be explicitly applied to all elements -- stylesheets get stripped.) 9 | */ 10 | 11 | /* This is the overall wrapper, it should be treated as the `body` section. */ 12 | .markdown-here-wrapper { 13 | } 14 | 15 | /* To add site specific rules, you can use the `data-md-url` attribute that we 16 | add to the wrapper element. Note that rules like this are used depending 17 | on the URL you're *sending* from, not the URL where the recipient views it. 18 | */ 19 | /* .markdown-here-wrapper[data-md-url*="mail.yahoo."] ul { color: red; } */ 20 | 21 | pre, code { 22 | font-family: Avenir, "PingFangSC-Light"; 23 | } 24 | 25 | code { 26 | padding: 0.2em 0.5em; 27 | color: #C7254E; 28 | white-space: pre-wrap; 29 | background-color: #F8F8F8; 30 | border-radius: 2px; 31 | display: inline; /* added to fix Yahoo block display of inline code */ 32 | } 33 | 34 | pre { 35 | font-size: 1em; 36 | line-height: 1.2em; 37 | } 38 | 39 | pre code { 40 | white-space: pre; 41 | overflow: auto; /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */ 42 | padding: 0.5em 0.7em; 43 | display: block !important; /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */ 44 | } 45 | 46 | /* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlighted 47 | code look non-monospace. This rule will override it. */ 48 | .markdown-here-wrapper[data-md-url*="wordpress."] code span { 49 | font: inherit; 50 | } 51 | 52 | /* Wordpress adds a grey background to `pre` elements that doesn't go well with 53 | our syntax highlighting. */ 54 | .markdown-here-wrapper[data-md-url*="wordpress."] pre { 55 | background-color: transparent; 56 | } 57 | 58 | /* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing. 59 | Note that we only use a top margin and not a bottom margin -- this prevents the 60 | "blank line" look at the top of the email (issue #243). 61 | */ 62 | p { 63 | /* !important is needed here because Hotmail/Outlook.com uses !important to 64 | kill the margin in

. We need this to win. */ 65 | font-family: Avenir, "PingFangSC-Light" !important; 66 | font-size: 15px !important; 67 | color: #333 !important; 68 | line-height: 1.8em !important; 69 | letter-spacing: 0.1em !important; 70 | margin: 1em 1em !important; 71 | text-align: justify !important; 72 | } 73 | 74 | table, pre, dl, blockquote, q, ul, ol { 75 | margin: 1.2em 0em; 76 | } 77 | 78 | ul, ol { 79 | padding-left: 0em; 80 | margin: 1.2em 2em; 81 | } 82 | 83 | li { 84 | margin: 0.2em 0; 85 | font-family: Avenir, "PingFangSC-Light" !important; 86 | font-size: 15px !important; 87 | color: #333 !important; 88 | line-height: 1.8em !important; 89 | letter-spacing: 0.1em !important; 90 | margin: 0.2em 0.2em !important; 91 | } 92 | 93 | /* Space paragraphs in a list the same as the list itself. */ 94 | ul li { 95 | /* Needs !important to override rule above. */ 96 | margin: 0.2em 0; 97 | font-family: Avenir, "PingFangSC-Light" !important; 98 | font-size: 15px !important; 99 | color: #333 !important; 100 | line-height: 1.8em !important; 101 | letter-spacing: 0.1em !important; 102 | margin: 0.2em 0.2em !important; 103 | } 104 | 105 | /* Smaller spacing for sub-lists */ 106 | ul ul, ul ol, ol ul, ol ol { 107 | margin: 0; 108 | padding-left: 1em; 109 | } 110 | 111 | /* Use Roman numerals for sub-ordered-lists. (Like Github.) */ 112 | ol ol, ul ol { 113 | list-style-type: circle; 114 | } 115 | 116 | /* Use letters for sub-sub-ordered lists. (Like Github.) */ 117 | ul ul ol, ul ol ol, ol ul ol, ol ol ol { 118 | list-style-type: square; 119 | } 120 | 121 | dl { 122 | padding: 0; 123 | } 124 | 125 | dl dt { 126 | font-size: 1em; 127 | font-weight: bold; 128 | font-style: italic; 129 | } 130 | 131 | dl dd { 132 | margin: 0 0 1em; 133 | padding: 0 1em; 134 | } 135 | 136 | blockquote, q { 137 | border-left: 4px solid #3bb8af; 138 | padding: 0em; 139 | margin: 0em 1em; 140 | color: #777; 141 | quotes: none; 142 | } 143 | 144 | strong, b { 145 | color: #3BB8AF; 146 | } 147 | 148 | blockquote p { 149 | color: rgb(119, 117, 117) !important; 150 | } 151 | 152 | blockquote::before, blockquote::after, q::before, q::after { 153 | content: none; 154 | } 155 | 156 | h1, h2, h3, h4, h5, h6 { 157 | margin: 1.3em 0 1em; 158 | padding: 0; 159 | font-weight: bold; 160 | letter-spacing: 0.1em !important; 161 | } 162 | 163 | h1 { 164 | font-size: 1.7em; 165 | border-bottom: 1px solid #ddd; 166 | color: black; 167 | } 168 | 169 | h2 { 170 | font-size: 1.4em; 171 | text-align: center; 172 | border-bottom: 1px solid #eee; 173 | color: #3bb8af; 174 | } 175 | 176 | h3 { 177 | font-size: 1.3em; 178 | } 179 | 180 | h4 { 181 | font-size: 1.2em; 182 | } 183 | 184 | h5 { 185 | font-size: 1em; 186 | } 187 | 188 | h6 { 189 | font-size: 1em; 190 | color: #777; 191 | } 192 | 193 | table { 194 | border-collapse: collapse; 195 | border-spacing: 0; 196 | font-size: 0.8em; 197 | border: 0; 198 | font-family: Avenir, "PingFangSC-Light"; 199 | } 200 | 201 | tbody { 202 | margin: 0; 203 | padding: 0; 204 | border: 0; 205 | } 206 | 207 | table tr { 208 | border: 0; 209 | border-top: 1px solid #CCC; 210 | background-color: white; 211 | margin: 0; 212 | padding: 0; 213 | } 214 | 215 | table tr:nth-child(2n) { 216 | background-color: #F8F8F8; 217 | } 218 | 219 | table tr th, table tr td { 220 | font-size: 0.8em; 221 | border: 1px solid #CCC; 222 | margin: 0; 223 | padding: 0.5em 1em; 224 | } 225 | 226 | table tr th { 227 | font-weight: bold; 228 | background-color: #F0F0F0; 229 | } 230 | -------------------------------------------------------------------------------- /markdown-here-css/sample-4/md.css: -------------------------------------------------------------------------------- 1 | /* 2 | * NOTE: 3 | * - The use of browser-specific styles (-moz-, -webkit-) should be avoided. 4 | * If used, they may not render correctly for people reading the email in 5 | * a different browser than the one from which the email was sent. 6 | * - The use of state-dependent styles (like a:hover) don't work because they 7 | * don't match at the time the styles are made explicit. (In email, styles 8 | * must be explicitly applied to all elements -- stylesheets get stripped.) 9 | */ 10 | 11 | /* This is the overall wrapper, it should be treated as the `body` section. */ 12 | .markdown-here-wrapper { 13 | } 14 | 15 | /* To add site specific rules, you can use the `data-md-url` attribute that we 16 | add to the wrapper element. Note that rules like this are used depending 17 | on the URL you're *sending* from, not the URL where the recipient views it. 18 | */ 19 | /* .markdown-here-wrapper[data-md-url*="mail.yahoo."] ul { color: red; } */ 20 | 21 | pre, code { 22 | font-family: Avenir, "PingFangSC-Light"; 23 | } 24 | 25 | code { 26 | background-color: #f8f8f8; 27 | padding: 0.2em 0.5em; 28 | color:#c7254e; 29 | font-size: 0.9em; 30 | border-radius: 2px; 31 | display: inline; /* added to fix Yahoo block display of inline code */ 32 | white-space: pre-wrap; 33 | } 34 | 35 | pre { 36 | font-size: 1em; 37 | line-height: 1.2em; 38 | } 39 | 40 | pre code { 41 | white-space: pre; 42 | overflow: auto; /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */ 43 | padding: 0.5em 0.7em; 44 | display: block !important; /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */ 45 | } 46 | 47 | /* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlighted 48 | code look non-monospace. This rule will override it. */ 49 | .markdown-here-wrapper[data-md-url*="wordpress."] code span { 50 | font: inherit; 51 | } 52 | 53 | /* Wordpress adds a grey background to `pre` elements that doesn't go well with 54 | our syntax highlighting. */ 55 | .markdown-here-wrapper[data-md-url*="wordpress."] pre { 56 | background-color: transparent; 57 | } 58 | 59 | /* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing. 60 | Note that we only use a top margin and not a bottom margin -- this prevents the 61 | "blank line" look at the top of the email (issue #243). 62 | */ 63 | p { 64 | /* !important is needed here because Hotmail/Outlook.com uses !important to 65 | kill the margin in

. We need this to win. */ 66 | font-family: Avenir, "PingFangSC-Light" !important; 67 | font-size: 15px !important; 68 | color: #333 !important; 69 | line-height: 1.8em !important; 70 | letter-spacing: 0.1em !important; 71 | margin: 1em 1em !important; 72 | text-align: justify !important; 73 | } 74 | 75 | table, pre, dl, blockquote, q, ul, ol { 76 | margin: 1.2em 0em; 77 | } 78 | 79 | ul, ol { 80 | padding-left: 0em; 81 | margin: 1.2em 2em; 82 | } 83 | 84 | li { 85 | margin: 0.2em 0; 86 | font-family: Avenir, "PingFangSC-Light" !important; 87 | font-size: 15px !important; 88 | color: #333 !important; 89 | line-height: 1.8em !important; 90 | letter-spacing: 0.1em !important; 91 | margin: 0.2em 0.2em !important; 92 | } 93 | 94 | /* Space paragraphs in a list the same as the list itself. */ 95 | li li { 96 | /* Needs !important to override rule above. */ 97 | margin: 0.2em 0; 98 | font-family: Avenir, "PingFangSC-Light" !important; 99 | font-size: 15px !important; 100 | color: #333 !important; 101 | line-height: 1.8em !important; 102 | letter-spacing: 0.1em !important; 103 | margin: 0.2em 0.2em !important; 104 | } 105 | 106 | /* Smaller spacing for sub-lists */ 107 | ul ul, ul ol, ol ul, ol ol { 108 | margin: 0; 109 | padding-left: 1em; 110 | } 111 | 112 | /* Use Roman numerals for sub-ordered-lists. (Like Github.) */ 113 | ol ol, ul ol { 114 | list-style-type: circle; 115 | } 116 | 117 | /* Use letters for sub-sub-ordered lists. (Like Github.) */ 118 | ul ul ol, ul ol ol, ol ul ol, ol ol ol { 119 | list-style-type: square; 120 | } 121 | 122 | dl { 123 | padding: 0; 124 | } 125 | 126 | dl dt { 127 | font-size: 1em; 128 | font-weight: bold; 129 | font-style: italic; 130 | } 131 | 132 | dl dd { 133 | margin: 0 0 1em; 134 | padding: 0 1em; 135 | } 136 | 137 | blockquote, q { 138 | border-left: 4px solid #3bb8af; 139 | padding: 0em; 140 | margin: 0em 1em; 141 | color: #777; 142 | quotes: none; 143 | } 144 | 145 | strong, b { 146 | color: #3bb8af; 147 | } 148 | 149 | blockquote p { 150 | color: rgb(119, 117, 117) !important 151 | } 152 | 153 | blockquote::before, blockquote::after, q::before, q::after { 154 | content: none; 155 | } 156 | 157 | h1, h2, h3, h4, h5, h6 { 158 | margin: 1.3em 0 1em; 159 | padding: 0; 160 | font-weight: bold; 161 | letter-spacing: 0.1em !important; 162 | } 163 | 164 | h1 { 165 | font-size: 1.6em; 166 | border-bottom: 1px solid #ddd; 167 | color: black; 168 | } 169 | 170 | h2 { 171 | font-size: 1.4em; 172 | text-align: center; 173 | border-bottom: 1px solid #eee; 174 | color: #3bb8af; 175 | } 176 | 177 | h3 { 178 | font-size: 1.3em; 179 | } 180 | 181 | h4 { 182 | font-size: 1.2em; 183 | } 184 | 185 | h5 { 186 | font-size: 1em; 187 | } 188 | 189 | h6 { 190 | font-size: 1em; 191 | color: #777; 192 | } 193 | 194 | table { 195 | border-collapse: collapse; 196 | border-spacing: 0; 197 | font-size: .8em; 198 | border: 0; 199 | font-family: Avenir, "PingFangSC-Light"; 200 | } 201 | 202 | tbody { 203 | margin: 0; 204 | padding: 0; 205 | border: 0; 206 | } 207 | 208 | table tr { 209 | border: 0; 210 | border-top: 1px solid #CCC; 211 | background-color: white; 212 | margin: 0; 213 | padding: 0; 214 | } 215 | 216 | table tr:nth-child(2n) { 217 | background-color: #F8F8F8; 218 | } 219 | 220 | table tr th, table tr td { 221 | font-size: 0.8em; 222 | border: 1px solid #CCC; 223 | margin: 0; 224 | padding: 0.5em 1em; 225 | } 226 | 227 | table tr th { 228 | font-weight: bold; 229 | background-color: #F0F0F0; 230 | } 231 | -------------------------------------------------------------------------------- /markdown-here-css/sample-5/md.css: -------------------------------------------------------------------------------- 1 | /* 2 | * NOTE: 3 | * - The use of browser-specific styles (-moz-, -webkit-) should be avoided. 4 | * If used, they may not render correctly for people reading the email in 5 | * a different browser than the one from which the email was sent. 6 | * - The use of state-dependent styles (like a:hover) don't work because they 7 | * don't match at the time the styles are made explicit. (In email, styles 8 | * must be explicitly applied to all elements -- stylesheets get stripped.) 9 | */ 10 | 11 | /* This is the overall wrapper, it should be treated as the `body` section. */ 12 | .markdown-here-wrapper { 13 | } 14 | 15 | /* To add site specific rules, you can use the `data-md-url` attribute that we 16 | add to the wrapper element. Note that rules like this are used depending 17 | on the URL you're *sending* from, not the URL where the recipient views it. 18 | */ 19 | /* .markdown-here-wrapper[data-md-url*="mail.yahoo."] ul { color: red; } */ 20 | 21 | pre, code { 22 | font-family: Avenir, "PingFangSC-Light"; 23 | } 24 | 25 | code { 26 | color: #c7254e; 27 | font-size: 0.9em; 28 | padding: 0.2em 0.3em; 29 | white-space: pre-wrap; 30 | background-color: #831f29; 31 | border-radius: 2px; 32 | display: inline; /* added to fix Yahoo block display of inline code */ 33 | } 34 | 35 | pre { 36 | font-size: 1em; 37 | line-height: 1.2em; 38 | } 39 | 40 | pre code { 41 | white-space: pre; 42 | overflow: auto; /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */ 43 | padding: 0.5em 0.7em; 44 | display: block !important; /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */ 45 | } 46 | 47 | /* In edit mode, Wordpress uses a `* { font: ...;} rule+style that makes highlighted 48 | code look non-monospace. This rule will override it. */ 49 | .markdown-here-wrapper[data-md-url*="wordpress."] code span { 50 | font: inherit; 51 | } 52 | 53 | /* Wordpress adds a grey background to `pre` elements that doesn't go well with 54 | our syntax highlighting. */ 55 | .markdown-here-wrapper[data-md-url*="wordpress."] pre { 56 | background-color: transparent; 57 | } 58 | 59 | /* This spacing has been tweaked to closely match Gmail+Chrome "paragraph" (two line breaks) spacing. 60 | Note that we only use a top margin and not a bottom margin -- this prevents the 61 | "blank line" look at the top of the email (issue #243). 62 | */ 63 | p { 64 | /* !important is needed here because Hotmail/Outlook.com uses !important to 65 | kill the margin in

. We need this to win. */ 66 | font-family: Avenir, "PingFangSC-Light" !important; 67 | font-size: 15px !important; 68 | color: #333 !important; 69 | line-height: 1.8em !important; 70 | letter-spacing: 0.1em !important; 71 | margin: 1em 1em !important; 72 | text-align: justify !important; 73 | } 74 | 75 | table, pre, dl, blockquote, q, ul, ol { 76 | margin: 1.2em 0em; 77 | } 78 | 79 | ul, ol { 80 | padding-left: 0em; 81 | margin: 1.2em 2em; 82 | } 83 | 84 | li { 85 | margin: 0.2em 0; 86 | font-family: Avenir, "PingFangSC-Light" !important; 87 | font-size: 15px !important; 88 | color: #333 !important; 89 | line-height: 1.8em !important; 90 | letter-spacing: 0.1em !important; 91 | margin: 0.2em 0.2em !important; 92 | } 93 | 94 | /* Space paragraphs in a list the same as the list itself. */ 95 | ul li { 96 | /* Needs !important to override rule above. */ 97 | margin: 0.2em 0; 98 | font-family: Avenir, "PingFangSC-Light" !important; 99 | font-size: 15px !important; 100 | color: #333 !important; 101 | line-height: 1.8em !important; 102 | letter-spacing: 0.1em !important; 103 | margin: 0.2em 0.2em !important; 104 | } 105 | 106 | /* Smaller spacing for sub-lists */ 107 | ul ul, ul ol, ol ul, ol ol { 108 | margin: 0; 109 | padding-left: 1em; 110 | } 111 | 112 | /* Use Roman numerals for sub-ordered-lists. (Like Github.) */ 113 | ol ol, ul ol { 114 | list-style-type: circle; 115 | } 116 | 117 | /* Use letters for sub-sub-ordered lists. (Like Github.) */ 118 | ul ul ol, ul ol ol, ol ul ol, ol ol ol { 119 | list-style-type: square; 120 | } 121 | 122 | dl { 123 | padding: 0; 124 | } 125 | 126 | dl dt { 127 | font-size: 1em; 128 | font-weight: bold; 129 | font-style: italic; 130 | } 131 | 132 | dl dd { 133 | margin: 0 0 1em; 134 | padding: 0 1em; 135 | } 136 | 137 | blockquote, q { 138 | border-left: 4px solid #831f29; 139 | padding: 0em; 140 | margin: 0em 1em; 141 | color: #777; 142 | quotes: none; 143 | } 144 | 145 | strong, b { 146 | color: #831f29; 147 | } 148 | 149 | blockquote p { 150 | color: rgb(119, 117, 117) !important; 151 | } 152 | 153 | blockquote::before, blockquote::after, q::before, q::after { 154 | content: none; 155 | } 156 | 157 | h1, h2, h3, h4, h5, h6 { 158 | margin: 1.3em 0 1em; 159 | padding: 0; 160 | font-weight: bold; 161 | letter-spacing: 0.1em !important; 162 | } 163 | 164 | h1 { 165 | font-size: 1.6em; 166 | border-bottom: 1px solid #ddd; 167 | color: black; 168 | } 169 | 170 | h2 { 171 | font-size: 1.4em; 172 | text-align: center; 173 | border-bottom: 1px solid #eee; 174 | color: #831f29; 175 | } 176 | 177 | h3 { 178 | font-size: 1.3em; 179 | } 180 | 181 | h4 { 182 | font-size: 1.2em; 183 | } 184 | 185 | h5 { 186 | font-size: 1em; 187 | } 188 | 189 | h6 { 190 | font-size: 1em; 191 | color: #777; 192 | } 193 | 194 | table { 195 | border-collapse: collapse; 196 | border-spacing: 0; 197 | font-size: .8em; 198 | border: 0; 199 | font-family: Avenir, "PingFangSC-Light"; 200 | } 201 | 202 | tbody { 203 | margin: 0; 204 | padding: 0; 205 | border: 0; 206 | } 207 | 208 | table tr { 209 | border: 0; 210 | border-top: 1px solid #CCC; 211 | background-color: white; 212 | margin: 0; 213 | padding: 0; 214 | } 215 | 216 | table tr:nth-child(2n) { 217 | background-color: #F8F8F8; 218 | } 219 | 220 | table tr th, table tr td { 221 | font-size: 0.8em; 222 | border: 1px solid #CCC; 223 | margin: 0; 224 | padding: 0.5em 1em; 225 | } 226 | 227 | table tr th { 228 | font-weight: bold; 229 | background-color: #F0F0F0; 230 | } 231 | -------------------------------------------------------------------------------- /public/js/highlight.pack.js: -------------------------------------------------------------------------------- 1 | /*! highlight.js v9.2.0 | BSD3 License | git.io/hljslicense */ 2 | !function(e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):n&&(n.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return n.hljs}))}(function(e){function n(e){return e.replace(/&/gm,"&").replace(//gm,">")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+" ";if(i+=e.parentNode?e.parentNode.className:"",t=/\blang(?:uage)?-([\w-]+)\b/i.exec(i))return w(t[1])?t[1]:"no-highlight";for(i=i.split(/\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset"}function u(e){f+=""}function c(e){("start"==e.event?o:u)(e.node)}for(var s=0,f="",l=[];e.length||r.length;){var g=i();if(f+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){l.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);l.reverse().forEach(o)}else"start"==g[0].event?l.push(g[0].node):l.pop(),c(g.splice(0,1)[0])}return f+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");u[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?c("keyword",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\b\w+\b/,!0),i&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&i.tE&&(a.tE+=(a.e?"|":"")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push("self"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var f=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=f.length?t(f.join("|"),!0):{exec:function(){return null}}}}r(e)}function f(e,t,a,i){function o(e,n){for(var t=0;t";return i+=e+'">',i+n+o}function h(){if(!k.k)return n(M);var e="",t=0;k.lR.lastIndex=0;for(var r=k.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(k,r);a?(B+=a[1],e+=p(a[0],n(r[0]))):e+=n(r[0]),t=k.lR.lastIndex,r=k.lR.exec(M)}return e+n(M.substr(t))}function d(){var e="string"==typeof k.sL;if(e&&!R[k.sL])return n(M);var t=e?f(k.sL,M,!0,y[k.sL]):l(M,k.sL.length?k.sL:void 0);return k.r>0&&(B+=t.r),e&&(y[k.sL]=t.top),p(t.language,t.value,!1,!0)}function b(){L+=void 0!==k.sL?d():h(),M=""}function v(e,n){L+=e.cN?p(e.cN,"",!0):"",k=Object.create(e,{parent:{value:k}})}function m(e,n){if(M+=e,void 0===n)return b(),0;var t=o(n,k);if(t)return t.skip?M+=n:(t.eB&&(M+=n),b(),t.rB||t.eB||(M=n)),v(t,n),t.rB?0:n.length;var r=u(k,n);if(r){var a=k;a.skip?M+=n:(a.rE||a.eE||(M+=n),b(),a.eE&&(M=n));do k.cN&&(L+=""),k.skip||(B+=k.r),k=k.parent;while(k!=r.parent);return r.starts&&v(r.starts,""),a.rE?0:n.length}if(c(n,k))throw new Error('Illegal lexeme "'+n+'" for mode "'+(k.cN||"")+'"');return M+=n,n.length||1}var N=w(e);if(!N)throw new Error('Unknown language: "'+e+'"');s(N);var x,k=i||N,y={},L="";for(x=k;x!=N;x=x.parent)x.cN&&(L=p(x.cN,"",!0)+L);var M="",B=0;try{for(var C,j,I=0;;){if(k.t.lastIndex=I,C=k.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),x=k;x.parent;x=x.parent)x.cN&&(L+="");return{r:B,value:L,language:e,top:k}}catch(O){if(-1!=O.message.indexOf("Illegal"))return{r:0,value:n(t)};throw O}}function l(e,t){t=t||E.languages||Object.keys(R);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=f(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\t)+)/gm,function(e,n){return n.replace(/\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\n/g,"
")),e}function p(e,n,t){var r=n?x[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function h(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e;var r=t.textContent,o=n?f(n,r,!0):l(r),s=u(t);if(s.length){var h=document.createElementNS("http://www.w3.org/1999/xhtml","div");h.innerHTML=o.value,o.value=c(s,u(h),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=p(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll("pre code");Array.prototype.forEach.call(e,h)}}function v(){addEventListener("DOMContentLoaded",b,!1),addEventListener("load",b,!1)}function m(n,t){var r=R[n]=t(e);r.aliases&&r.aliases.forEach(function(e){x[e]=n})}function N(){return Object.keys(R)}function w(e){return e=(e||"").toLowerCase(),R[e]||R[x[e]]}var E={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},R={},x={};return e.highlight=f,e.highlightAuto=l,e.fixMarkup=g,e.highlightBlock=h,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:"^\\[.+\\]:",rB:!0,c:[{cN:"symbol",b:"\\[",e:"\\]:",eB:!0,eE:!0,starts:{cN:"link",e:"$"}}]}]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",t={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:c,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage("json",function(e){var i={literal:"true false null"},n=[e.QSM,e.CNM],r={e:",",eW:!0,eE:!0,c:n,k:i},t={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(r,{b:/:/})],i:"\\S"},c={b:"\\[",e:"\\]",c:[e.inherit(r)],i:"\\S"};return n.splice(n.length,0,t,c),{c:n,k:i,i:"\\S"}});hljs.registerLanguage("xml",function(s){var e="[A-Za-z0-9\\._:-]+",t={eW:!0,i:/]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},s.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[t],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[t],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},t]}]}});hljs.registerLanguage("dts",function(e){var a={cN:"string",v:[e.inherit(e.QSM,{b:'((u8?|U)|L)?"'}),{b:'(u8?|U)?R"',e:'"',c:[e.BE]},{b:"'\\\\?.",e:"'",i:"."}]},c={cN:"number",v:[{b:"\\b(\\d+(\\.\\d*)?|\\.\\d+)(u|U|l|L|ul|UL|f|F)"},{b:e.CNR}],r:0},b={cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef ifdef ifndef"},c:[{b:/\\\n/,r:0},{bK:"include",e:"$",k:{"meta-keyword":"include"},c:[e.inherit(a,{cN:"meta-string"}),{cN:"meta-string",b:"<",e:">",i:"\\n"}]},a,e.CLCM,e.CBCM]},i={cN:"variable",b:"\\&[a-z\\d_]*\\b"},r={cN:"meta-keyword",b:"/[a-z][a-z\\d-]*/"},d={cN:"symbol",b:"^\\s*[a-zA-Z_][a-zA-Z\\d_]*:"},n={cN:"params",b:"<",e:">",c:[c,i]},s={cN:"class",b:/[a-zA-Z_][a-zA-Z\d_@]*\s{/,e:/[{;=]/,rB:!0,eE:!0},t={cN:"class",b:"/\\s*{",e:"};",r:10,c:[i,r,d,s,n,e.CLCM,e.CBCM,c,a]};return{k:"",c:[t,i,r,d,s,n,e.CLCM,e.CBCM,c,a,b,{b:e.IR+"::",k:""}]}});hljs.registerLanguage("php",function(e){var c={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},a={cN:"meta",b:/<\?(php)?|\?>/},i={cN:"string",c:[e.BE,a],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[a]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,i,t]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},i,t]}});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke",e:/;/,eW:!0,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\.]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage("ruby",function(e){var b="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",c="and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",r={cN:"doctag",b:"@[A-Za-z]+"},a={b:"#<",e:">"},s=[e.C("#","$",{c:[r]}),e.C("^\\=begin","^\\=end",{c:[r],r:10}),e.C("^__END__","\\n$")],n={cN:"subst",b:"#\\{",e:"}",k:c},t={cN:"string",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/}]},i={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:c},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(s)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[t,{b:b}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"("+e.RSR+")\\s*",c:[a,{cN:"regexp",c:[e.BE,n],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var o="[>?]>",l="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",w=[{b:/^\s*=>/,starts:{e:"$",c:d}},{cN:"meta",b:"^("+o+"|"+l+"|"+u+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:c,i:/\/\*/,c:s.concat(w).concat(d)}});hljs.registerLanguage("javascript",function(e){return{aliases:["js","jsx"],k:{keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b://,sL:"xml",c:[{b:/<\w+\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:["self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage("java",function(e){var a=e.UIR+"(<"+e.UIR+"(\\s*,\\s*"+e.UIR+")*>)?",t="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",r="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",c={cN:"number",b:r,r:0};return{aliases:["jsp"],k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+a+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},c,{cN:"meta",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage("python",function(e){var r={cN:"meta",b:/^(>>>|\.\.\.) /},b={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]},a={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},l={cN:"params",b:/\(/,e:/\)/,c:["self",r,a,b]};return{aliases:["py","gyp"],k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)/,c:[r,a,b,e.HCM,{v:[{cN:"function",bK:"def",r:10},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,l,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("cpp",function(t){var e={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?"'}),{b:'(u8?|U)?R"',e:'"',c:[t.BE]},{b:"'\\\\?.",e:"'",i:"."}]},i={cN:"number",v:[{b:"\\b(\\d+(\\.\\d*)?|\\.\\d+)(u|U|l|L|ul|UL|f|F)"},{b:t.CNR}],r:0},s={cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef"},c:[{b:/\\\n/,r:0},{bK:"include",e:"$",k:{"meta-keyword":"include"},c:[t.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:"<",e:">",i:"\\n"}]},r,t.CLCM,t.CBCM]},a=t.IR+"\\s*\\(",c={keyword:"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"};return{aliases:["c","cc","h","c++","h++","hpp"],k:c,i:"",k:c,c:["self",e]},{b:t.IR+"::",k:c},{bK:"new throw return else",r:0},{cN:"function",b:"("+t.IR+"[\\*&\\s]+)+"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\w\s\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,i]},t.CLCM,t.CBCM,s]}]}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"(AV|CA|CF|CG|CI|MK|MP|NS|UI|XC)\\w+"},i={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},n=/[a-zA-Z@][a-zA-Z0-9_]*/,o="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:i,l:n,i:""}]}]},{cN:"class",b:"("+o.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:o,l:n,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}});hljs.registerLanguage("coffeescript",function(e){var c={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},n="[A-Za-z$_][0-9A-Za-z$_]*",r={cN:"subst",b:/#\{/,e:/}/,k:c},s=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,r]},{b:/"/,e:/"/,c:[e.BE,r]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[r,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+n},{b:"`",e:"`",eB:!0,eE:!0,sL:"javascript"}];r.c=s;var i=e.inherit(e.TM,{b:n}),t="(\\(.*\\))?\\s*\\B[-=]>",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(s)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:s.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+t,e:"[-=]>",rB:!0,c:[i,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:t,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("less",function(e){var r="[\\w-]+",t="("+r+"|@{"+r+"})",a=[],c=[],s=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},b=function(e,r,t){return{cN:e,b:r,r:t}},i={b:"\\(",e:"\\)",c:c,r:0};c.push(e.CLCM,e.CBCM,s("'"),s('"'),e.CSSNM,{b:"(url|data-uri)\\(",starts:{cN:"string",e:"[\\)\\n]",eE:!0}},b("number","#[0-9A-Fa-f]+\\b"),i,b("variable","@@?"+r,10),b("variable","@{"+r+"}"),b("built_in","~?`[^`]*?`"),{cN:"attribute",b:r+"\\s*:",e:":",rB:!0,eE:!0},{cN:"meta",b:"!important"});var n=c.concat({b:"{",e:"}",c:a}),o={bK:"when",eW:!0,c:[{bK:"and not"}].concat(c)},u={cN:"attribute",b:t,e:":",eE:!0,c:[e.CLCM,e.CBCM],i:/\S/,starts:{e:"[;}]",rE:!0,c:c,i:"[<=$]"}},C={cN:"keyword",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:c,r:0}},l={cN:"variable",v:[{b:"@"+r+"\\s*:",r:15},{b:"@"+r}],starts:{e:"[;}]",rE:!0,c:n}},p={v:[{b:"[\\.#:&\\[]",e:"[;{}]"},{b:t+"[^;]*{",e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",c:[e.CLCM,e.CBCM,o,b("keyword","all\\b"),b("variable","@{"+r+"}"),b("selector-tag",t+"%?",0),b("selector-id","#"+t),b("selector-class","\\."+t,0),b("selector-tag","&",0),{cN:"selector-attr",b:"\\[",e:"\\]"},{b:"\\(",e:"\\)",c:n},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,C,l,p,u),{cI:!0,i:"[=>'/<($\"]",c:a}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}}); -------------------------------------------------------------------------------- /public/css/bootstrap-grid-and-display.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Borrowed from: Bootstrap v4.0.0-beta (https://getbootstrap.com) 3 | * Copyright 2011-2017 The Bootstrap Authors 4 | * Copyright 2011-2017 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | */ 7 | 8 | @-ms-viewport { 9 | width: device-width; 10 | } 11 | 12 | html { 13 | box-sizing: border-box; 14 | -ms-overflow-style: scrollbar; 15 | } 16 | 17 | *, 18 | *::before, 19 | *::after { 20 | box-sizing: inherit; 21 | } 22 | 23 | .container { 24 | margin-right: auto; 25 | margin-left: auto; 26 | padding-right: 15px; 27 | padding-left: 15px; 28 | width: 100%; 29 | } 30 | 31 | @media (min-width: 576px) { 32 | .container { 33 | max-width: 540px; 34 | } 35 | } 36 | 37 | @media (min-width: 768px) { 38 | .container { 39 | max-width: 720px; 40 | } 41 | } 42 | 43 | @media (min-width: 992px) { 44 | .container { 45 | max-width: 960px; 46 | } 47 | } 48 | 49 | @media (min-width: 1200px) { 50 | .container { 51 | max-width: 1140px; 52 | } 53 | } 54 | 55 | .container-fluid { 56 | width: 100%; 57 | margin-right: auto; 58 | margin-left: auto; 59 | padding-right: 15px; 60 | padding-left: 15px; 61 | width: 100%; 62 | } 63 | 64 | .row { 65 | display: -ms-flexbox; 66 | display: flex; 67 | -ms-flex-wrap: wrap; 68 | flex-wrap: wrap; 69 | margin-right: -15px; 70 | margin-left: -15px; 71 | } 72 | 73 | .no-gutters { 74 | margin-right: 0; 75 | margin-left: 0; 76 | } 77 | 78 | .no-gutters > .col, 79 | .no-gutters > [class*='col-'] { 80 | padding-right: 0; 81 | padding-left: 0; 82 | } 83 | 84 | .col-1, 85 | .col-2, 86 | .col-3, 87 | .col-4, 88 | .col-5, 89 | .col-6, 90 | .col-7, 91 | .col-8, 92 | .col-9, 93 | .col-10, 94 | .col-11, 95 | .col-12, 96 | .col, 97 | .col-auto, 98 | .col-sm-1, 99 | .col-sm-2, 100 | .col-sm-3, 101 | .col-sm-4, 102 | .col-sm-5, 103 | .col-sm-6, 104 | .col-sm-7, 105 | .col-sm-8, 106 | .col-sm-9, 107 | .col-sm-10, 108 | .col-sm-11, 109 | .col-sm-12, 110 | .col-sm, 111 | .col-sm-auto, 112 | .col-md-1, 113 | .col-md-2, 114 | .col-md-3, 115 | .col-md-4, 116 | .col-md-5, 117 | .col-md-6, 118 | .col-md-7, 119 | .col-md-8, 120 | .col-md-9, 121 | .col-md-10, 122 | .col-md-11, 123 | .col-md-12, 124 | .col-md, 125 | .col-md-auto, 126 | .col-lg-1, 127 | .col-lg-2, 128 | .col-lg-3, 129 | .col-lg-4, 130 | .col-lg-5, 131 | .col-lg-6, 132 | .col-lg-7, 133 | .col-lg-8, 134 | .col-lg-9, 135 | .col-lg-10, 136 | .col-lg-11, 137 | .col-lg-12, 138 | .col-lg, 139 | .col-lg-auto, 140 | .col-xl-1, 141 | .col-xl-2, 142 | .col-xl-3, 143 | .col-xl-4, 144 | .col-xl-5, 145 | .col-xl-6, 146 | .col-xl-7, 147 | .col-xl-8, 148 | .col-xl-9, 149 | .col-xl-10, 150 | .col-xl-11, 151 | .col-xl-12, 152 | .col-xl, 153 | .col-xl-auto { 154 | position: relative; 155 | width: 100%; 156 | min-height: 1px; 157 | padding-right: 15px; 158 | padding-left: 15px; 159 | } 160 | 161 | .col { 162 | -ms-flex-preferred-size: 0; 163 | flex-basis: 0; 164 | -ms-flex-positive: 1; 165 | flex-grow: 1; 166 | max-width: 100%; 167 | } 168 | 169 | .col-auto { 170 | -ms-flex: 0 0 auto; 171 | flex: 0 0 auto; 172 | width: auto; 173 | max-width: none; 174 | } 175 | 176 | .col-1 { 177 | -ms-flex: 0 0 8.333333%; 178 | flex: 0 0 8.333333%; 179 | max-width: 8.333333%; 180 | } 181 | 182 | .col-2 { 183 | -ms-flex: 0 0 16.666667%; 184 | flex: 0 0 16.666667%; 185 | max-width: 16.666667%; 186 | } 187 | 188 | .col-3 { 189 | -ms-flex: 0 0 25%; 190 | flex: 0 0 25%; 191 | max-width: 25%; 192 | } 193 | 194 | .col-4 { 195 | -ms-flex: 0 0 33.333333%; 196 | flex: 0 0 33.333333%; 197 | max-width: 33.333333%; 198 | } 199 | 200 | .col-5 { 201 | -ms-flex: 0 0 41.666667%; 202 | flex: 0 0 41.666667%; 203 | max-width: 41.666667%; 204 | } 205 | 206 | .col-6 { 207 | -ms-flex: 0 0 50%; 208 | flex: 0 0 50%; 209 | max-width: 50%; 210 | } 211 | 212 | .col-7 { 213 | -ms-flex: 0 0 58.333333%; 214 | flex: 0 0 58.333333%; 215 | max-width: 58.333333%; 216 | } 217 | 218 | .col-8 { 219 | -ms-flex: 0 0 66.666667%; 220 | flex: 0 0 66.666667%; 221 | max-width: 66.666667%; 222 | } 223 | 224 | .col-9 { 225 | -ms-flex: 0 0 75%; 226 | flex: 0 0 75%; 227 | max-width: 75%; 228 | } 229 | 230 | .col-10 { 231 | -ms-flex: 0 0 83.333333%; 232 | flex: 0 0 83.333333%; 233 | max-width: 83.333333%; 234 | } 235 | 236 | .col-11 { 237 | -ms-flex: 0 0 91.666667%; 238 | flex: 0 0 91.666667%; 239 | max-width: 91.666667%; 240 | } 241 | 242 | .col-12 { 243 | -ms-flex: 0 0 100%; 244 | flex: 0 0 100%; 245 | max-width: 100%; 246 | } 247 | 248 | .order-1 { 249 | -ms-flex-order: 1; 250 | order: 1; 251 | } 252 | 253 | .order-2 { 254 | -ms-flex-order: 2; 255 | order: 2; 256 | } 257 | 258 | .order-3 { 259 | -ms-flex-order: 3; 260 | order: 3; 261 | } 262 | 263 | .order-4 { 264 | -ms-flex-order: 4; 265 | order: 4; 266 | } 267 | 268 | .order-5 { 269 | -ms-flex-order: 5; 270 | order: 5; 271 | } 272 | 273 | .order-6 { 274 | -ms-flex-order: 6; 275 | order: 6; 276 | } 277 | 278 | .order-7 { 279 | -ms-flex-order: 7; 280 | order: 7; 281 | } 282 | 283 | .order-8 { 284 | -ms-flex-order: 8; 285 | order: 8; 286 | } 287 | 288 | .order-9 { 289 | -ms-flex-order: 9; 290 | order: 9; 291 | } 292 | 293 | .order-10 { 294 | -ms-flex-order: 10; 295 | order: 10; 296 | } 297 | 298 | .order-11 { 299 | -ms-flex-order: 11; 300 | order: 11; 301 | } 302 | 303 | .order-12 { 304 | -ms-flex-order: 12; 305 | order: 12; 306 | } 307 | 308 | @media (min-width: 576px) { 309 | .col-sm { 310 | -ms-flex-preferred-size: 0; 311 | flex-basis: 0; 312 | -ms-flex-positive: 1; 313 | flex-grow: 1; 314 | max-width: 100%; 315 | } 316 | .col-sm-auto { 317 | -ms-flex: 0 0 auto; 318 | flex: 0 0 auto; 319 | width: auto; 320 | max-width: none; 321 | } 322 | .col-sm-1 { 323 | -ms-flex: 0 0 8.333333%; 324 | flex: 0 0 8.333333%; 325 | max-width: 8.333333%; 326 | } 327 | .col-sm-2 { 328 | -ms-flex: 0 0 16.666667%; 329 | flex: 0 0 16.666667%; 330 | max-width: 16.666667%; 331 | } 332 | .col-sm-3 { 333 | -ms-flex: 0 0 25%; 334 | flex: 0 0 25%; 335 | max-width: 25%; 336 | } 337 | .col-sm-4 { 338 | -ms-flex: 0 0 33.333333%; 339 | flex: 0 0 33.333333%; 340 | max-width: 33.333333%; 341 | } 342 | .col-sm-5 { 343 | -ms-flex: 0 0 41.666667%; 344 | flex: 0 0 41.666667%; 345 | max-width: 41.666667%; 346 | } 347 | .col-sm-6 { 348 | -ms-flex: 0 0 50%; 349 | flex: 0 0 50%; 350 | max-width: 50%; 351 | } 352 | .col-sm-7 { 353 | -ms-flex: 0 0 58.333333%; 354 | flex: 0 0 58.333333%; 355 | max-width: 58.333333%; 356 | } 357 | .col-sm-8 { 358 | -ms-flex: 0 0 66.666667%; 359 | flex: 0 0 66.666667%; 360 | max-width: 66.666667%; 361 | } 362 | .col-sm-9 { 363 | -ms-flex: 0 0 75%; 364 | flex: 0 0 75%; 365 | max-width: 75%; 366 | } 367 | .col-sm-10 { 368 | -ms-flex: 0 0 83.333333%; 369 | flex: 0 0 83.333333%; 370 | max-width: 83.333333%; 371 | } 372 | .col-sm-11 { 373 | -ms-flex: 0 0 91.666667%; 374 | flex: 0 0 91.666667%; 375 | max-width: 91.666667%; 376 | } 377 | .col-sm-12 { 378 | -ms-flex: 0 0 100%; 379 | flex: 0 0 100%; 380 | max-width: 100%; 381 | } 382 | .order-sm-1 { 383 | -ms-flex-order: 1; 384 | order: 1; 385 | } 386 | .order-sm-2 { 387 | -ms-flex-order: 2; 388 | order: 2; 389 | } 390 | .order-sm-3 { 391 | -ms-flex-order: 3; 392 | order: 3; 393 | } 394 | .order-sm-4 { 395 | -ms-flex-order: 4; 396 | order: 4; 397 | } 398 | .order-sm-5 { 399 | -ms-flex-order: 5; 400 | order: 5; 401 | } 402 | .order-sm-6 { 403 | -ms-flex-order: 6; 404 | order: 6; 405 | } 406 | .order-sm-7 { 407 | -ms-flex-order: 7; 408 | order: 7; 409 | } 410 | .order-sm-8 { 411 | -ms-flex-order: 8; 412 | order: 8; 413 | } 414 | .order-sm-9 { 415 | -ms-flex-order: 9; 416 | order: 9; 417 | } 418 | .order-sm-10 { 419 | -ms-flex-order: 10; 420 | order: 10; 421 | } 422 | .order-sm-11 { 423 | -ms-flex-order: 11; 424 | order: 11; 425 | } 426 | .order-sm-12 { 427 | -ms-flex-order: 12; 428 | order: 12; 429 | } 430 | } 431 | 432 | @media (min-width: 768px) { 433 | .col-md { 434 | -ms-flex-preferred-size: 0; 435 | flex-basis: 0; 436 | -ms-flex-positive: 1; 437 | flex-grow: 1; 438 | max-width: 100%; 439 | } 440 | .col-md-auto { 441 | -ms-flex: 0 0 auto; 442 | flex: 0 0 auto; 443 | width: auto; 444 | max-width: none; 445 | } 446 | .col-md-1 { 447 | -ms-flex: 0 0 8.333333%; 448 | flex: 0 0 8.333333%; 449 | max-width: 8.333333%; 450 | } 451 | .col-md-2 { 452 | -ms-flex: 0 0 16.666667%; 453 | flex: 0 0 16.666667%; 454 | max-width: 16.666667%; 455 | } 456 | .col-md-3 { 457 | -ms-flex: 0 0 25%; 458 | flex: 0 0 25%; 459 | max-width: 25%; 460 | } 461 | .col-md-4 { 462 | -ms-flex: 0 0 33.333333%; 463 | flex: 0 0 33.333333%; 464 | max-width: 33.333333%; 465 | } 466 | .col-md-5 { 467 | -ms-flex: 0 0 41.666667%; 468 | flex: 0 0 41.666667%; 469 | max-width: 41.666667%; 470 | } 471 | .col-md-6 { 472 | -ms-flex: 0 0 50%; 473 | flex: 0 0 50%; 474 | max-width: 50%; 475 | } 476 | .col-md-7 { 477 | -ms-flex: 0 0 58.333333%; 478 | flex: 0 0 58.333333%; 479 | max-width: 58.333333%; 480 | } 481 | .col-md-8 { 482 | -ms-flex: 0 0 66.666667%; 483 | flex: 0 0 66.666667%; 484 | max-width: 66.666667%; 485 | } 486 | .col-md-9 { 487 | -ms-flex: 0 0 75%; 488 | flex: 0 0 75%; 489 | max-width: 75%; 490 | } 491 | .col-md-10 { 492 | -ms-flex: 0 0 83.333333%; 493 | flex: 0 0 83.333333%; 494 | max-width: 83.333333%; 495 | } 496 | .col-md-11 { 497 | -ms-flex: 0 0 91.666667%; 498 | flex: 0 0 91.666667%; 499 | max-width: 91.666667%; 500 | } 501 | .col-md-12 { 502 | -ms-flex: 0 0 100%; 503 | flex: 0 0 100%; 504 | max-width: 100%; 505 | } 506 | .order-md-1 { 507 | -ms-flex-order: 1; 508 | order: 1; 509 | } 510 | .order-md-2 { 511 | -ms-flex-order: 2; 512 | order: 2; 513 | } 514 | .order-md-3 { 515 | -ms-flex-order: 3; 516 | order: 3; 517 | } 518 | .order-md-4 { 519 | -ms-flex-order: 4; 520 | order: 4; 521 | } 522 | .order-md-5 { 523 | -ms-flex-order: 5; 524 | order: 5; 525 | } 526 | .order-md-6 { 527 | -ms-flex-order: 6; 528 | order: 6; 529 | } 530 | .order-md-7 { 531 | -ms-flex-order: 7; 532 | order: 7; 533 | } 534 | .order-md-8 { 535 | -ms-flex-order: 8; 536 | order: 8; 537 | } 538 | .order-md-9 { 539 | -ms-flex-order: 9; 540 | order: 9; 541 | } 542 | .order-md-10 { 543 | -ms-flex-order: 10; 544 | order: 10; 545 | } 546 | .order-md-11 { 547 | -ms-flex-order: 11; 548 | order: 11; 549 | } 550 | .order-md-12 { 551 | -ms-flex-order: 12; 552 | order: 12; 553 | } 554 | } 555 | 556 | @media (min-width: 992px) { 557 | .col-lg { 558 | -ms-flex-preferred-size: 0; 559 | flex-basis: 0; 560 | -ms-flex-positive: 1; 561 | flex-grow: 1; 562 | max-width: 100%; 563 | } 564 | .col-lg-auto { 565 | -ms-flex: 0 0 auto; 566 | flex: 0 0 auto; 567 | width: auto; 568 | max-width: none; 569 | } 570 | .col-lg-1 { 571 | -ms-flex: 0 0 8.333333%; 572 | flex: 0 0 8.333333%; 573 | max-width: 8.333333%; 574 | } 575 | .col-lg-2 { 576 | -ms-flex: 0 0 16.666667%; 577 | flex: 0 0 16.666667%; 578 | max-width: 16.666667%; 579 | } 580 | .col-lg-3 { 581 | -ms-flex: 0 0 25%; 582 | flex: 0 0 25%; 583 | max-width: 25%; 584 | } 585 | .col-lg-4 { 586 | -ms-flex: 0 0 33.333333%; 587 | flex: 0 0 33.333333%; 588 | max-width: 33.333333%; 589 | } 590 | .col-lg-5 { 591 | -ms-flex: 0 0 41.666667%; 592 | flex: 0 0 41.666667%; 593 | max-width: 41.666667%; 594 | } 595 | .col-lg-6 { 596 | -ms-flex: 0 0 50%; 597 | flex: 0 0 50%; 598 | max-width: 50%; 599 | } 600 | .col-lg-7 { 601 | -ms-flex: 0 0 58.333333%; 602 | flex: 0 0 58.333333%; 603 | max-width: 58.333333%; 604 | } 605 | .col-lg-8 { 606 | -ms-flex: 0 0 66.666667%; 607 | flex: 0 0 66.666667%; 608 | max-width: 66.666667%; 609 | } 610 | .col-lg-9 { 611 | -ms-flex: 0 0 75%; 612 | flex: 0 0 75%; 613 | max-width: 75%; 614 | } 615 | .col-lg-10 { 616 | -ms-flex: 0 0 83.333333%; 617 | flex: 0 0 83.333333%; 618 | max-width: 83.333333%; 619 | } 620 | .col-lg-11 { 621 | -ms-flex: 0 0 91.666667%; 622 | flex: 0 0 91.666667%; 623 | max-width: 91.666667%; 624 | } 625 | .col-lg-12 { 626 | -ms-flex: 0 0 100%; 627 | flex: 0 0 100%; 628 | max-width: 100%; 629 | } 630 | .order-lg-1 { 631 | -ms-flex-order: 1; 632 | order: 1; 633 | } 634 | .order-lg-2 { 635 | -ms-flex-order: 2; 636 | order: 2; 637 | } 638 | .order-lg-3 { 639 | -ms-flex-order: 3; 640 | order: 3; 641 | } 642 | .order-lg-4 { 643 | -ms-flex-order: 4; 644 | order: 4; 645 | } 646 | .order-lg-5 { 647 | -ms-flex-order: 5; 648 | order: 5; 649 | } 650 | .order-lg-6 { 651 | -ms-flex-order: 6; 652 | order: 6; 653 | } 654 | .order-lg-7 { 655 | -ms-flex-order: 7; 656 | order: 7; 657 | } 658 | .order-lg-8 { 659 | -ms-flex-order: 8; 660 | order: 8; 661 | } 662 | .order-lg-9 { 663 | -ms-flex-order: 9; 664 | order: 9; 665 | } 666 | .order-lg-10 { 667 | -ms-flex-order: 10; 668 | order: 10; 669 | } 670 | .order-lg-11 { 671 | -ms-flex-order: 11; 672 | order: 11; 673 | } 674 | .order-lg-12 { 675 | -ms-flex-order: 12; 676 | order: 12; 677 | } 678 | } 679 | 680 | @media (min-width: 1200px) { 681 | .col-xl { 682 | -ms-flex-preferred-size: 0; 683 | flex-basis: 0; 684 | -ms-flex-positive: 1; 685 | flex-grow: 1; 686 | max-width: 100%; 687 | } 688 | .col-xl-auto { 689 | -ms-flex: 0 0 auto; 690 | flex: 0 0 auto; 691 | width: auto; 692 | max-width: none; 693 | } 694 | .col-xl-1 { 695 | -ms-flex: 0 0 8.333333%; 696 | flex: 0 0 8.333333%; 697 | max-width: 8.333333%; 698 | } 699 | .col-xl-2 { 700 | -ms-flex: 0 0 16.666667%; 701 | flex: 0 0 16.666667%; 702 | max-width: 16.666667%; 703 | } 704 | .col-xl-3 { 705 | -ms-flex: 0 0 25%; 706 | flex: 0 0 25%; 707 | max-width: 25%; 708 | } 709 | .col-xl-4 { 710 | -ms-flex: 0 0 33.333333%; 711 | flex: 0 0 33.333333%; 712 | max-width: 33.333333%; 713 | } 714 | .col-xl-5 { 715 | -ms-flex: 0 0 41.666667%; 716 | flex: 0 0 41.666667%; 717 | max-width: 41.666667%; 718 | } 719 | .col-xl-6 { 720 | -ms-flex: 0 0 50%; 721 | flex: 0 0 50%; 722 | max-width: 50%; 723 | } 724 | .col-xl-7 { 725 | -ms-flex: 0 0 58.333333%; 726 | flex: 0 0 58.333333%; 727 | max-width: 58.333333%; 728 | } 729 | .col-xl-8 { 730 | -ms-flex: 0 0 66.666667%; 731 | flex: 0 0 66.666667%; 732 | max-width: 66.666667%; 733 | } 734 | .col-xl-9 { 735 | -ms-flex: 0 0 75%; 736 | flex: 0 0 75%; 737 | max-width: 75%; 738 | } 739 | .col-xl-10 { 740 | -ms-flex: 0 0 83.333333%; 741 | flex: 0 0 83.333333%; 742 | max-width: 83.333333%; 743 | } 744 | .col-xl-11 { 745 | -ms-flex: 0 0 91.666667%; 746 | flex: 0 0 91.666667%; 747 | max-width: 91.666667%; 748 | } 749 | .col-xl-12 { 750 | -ms-flex: 0 0 100%; 751 | flex: 0 0 100%; 752 | max-width: 100%; 753 | } 754 | .order-xl-1 { 755 | -ms-flex-order: 1; 756 | order: 1; 757 | } 758 | .order-xl-2 { 759 | -ms-flex-order: 2; 760 | order: 2; 761 | } 762 | .order-xl-3 { 763 | -ms-flex-order: 3; 764 | order: 3; 765 | } 766 | .order-xl-4 { 767 | -ms-flex-order: 4; 768 | order: 4; 769 | } 770 | .order-xl-5 { 771 | -ms-flex-order: 5; 772 | order: 5; 773 | } 774 | .order-xl-6 { 775 | -ms-flex-order: 6; 776 | order: 6; 777 | } 778 | .order-xl-7 { 779 | -ms-flex-order: 7; 780 | order: 7; 781 | } 782 | .order-xl-8 { 783 | -ms-flex-order: 8; 784 | order: 8; 785 | } 786 | .order-xl-9 { 787 | -ms-flex-order: 9; 788 | order: 9; 789 | } 790 | .order-xl-10 { 791 | -ms-flex-order: 10; 792 | order: 10; 793 | } 794 | .order-xl-11 { 795 | -ms-flex-order: 11; 796 | order: 11; 797 | } 798 | .order-xl-12 { 799 | -ms-flex-order: 12; 800 | order: 12; 801 | } 802 | } 803 | 804 | .flex-row { 805 | -ms-flex-direction: row !important; 806 | flex-direction: row !important; 807 | } 808 | 809 | .flex-column { 810 | -ms-flex-direction: column !important; 811 | flex-direction: column !important; 812 | } 813 | 814 | .flex-row-reverse { 815 | -ms-flex-direction: row-reverse !important; 816 | flex-direction: row-reverse !important; 817 | } 818 | 819 | .flex-column-reverse { 820 | -ms-flex-direction: column-reverse !important; 821 | flex-direction: column-reverse !important; 822 | } 823 | 824 | .flex-wrap { 825 | -ms-flex-wrap: wrap !important; 826 | flex-wrap: wrap !important; 827 | } 828 | 829 | .flex-nowrap { 830 | -ms-flex-wrap: nowrap !important; 831 | flex-wrap: nowrap !important; 832 | } 833 | 834 | .flex-wrap-reverse { 835 | -ms-flex-wrap: wrap-reverse !important; 836 | flex-wrap: wrap-reverse !important; 837 | } 838 | 839 | .justify-content-start { 840 | -ms-flex-pack: start !important; 841 | justify-content: flex-start !important; 842 | } 843 | 844 | .justify-content-end { 845 | -ms-flex-pack: end !important; 846 | justify-content: flex-end !important; 847 | } 848 | 849 | .justify-content-center { 850 | -ms-flex-pack: center !important; 851 | justify-content: center !important; 852 | } 853 | 854 | .justify-content-between { 855 | -ms-flex-pack: justify !important; 856 | justify-content: space-between !important; 857 | } 858 | 859 | .justify-content-around { 860 | -ms-flex-pack: distribute !important; 861 | justify-content: space-around !important; 862 | } 863 | 864 | .align-items-start { 865 | -ms-flex-align: start !important; 866 | align-items: flex-start !important; 867 | } 868 | 869 | .align-items-end { 870 | -ms-flex-align: end !important; 871 | align-items: flex-end !important; 872 | } 873 | 874 | .align-items-center { 875 | -ms-flex-align: center !important; 876 | align-items: center !important; 877 | } 878 | 879 | .align-items-baseline { 880 | -ms-flex-align: baseline !important; 881 | align-items: baseline !important; 882 | } 883 | 884 | .align-items-stretch { 885 | -ms-flex-align: stretch !important; 886 | align-items: stretch !important; 887 | } 888 | 889 | .align-content-start { 890 | -ms-flex-line-pack: start !important; 891 | align-content: flex-start !important; 892 | } 893 | 894 | .align-content-end { 895 | -ms-flex-line-pack: end !important; 896 | align-content: flex-end !important; 897 | } 898 | 899 | .align-content-center { 900 | -ms-flex-line-pack: center !important; 901 | align-content: center !important; 902 | } 903 | 904 | .align-content-between { 905 | -ms-flex-line-pack: justify !important; 906 | align-content: space-between !important; 907 | } 908 | 909 | .align-content-around { 910 | -ms-flex-line-pack: distribute !important; 911 | align-content: space-around !important; 912 | } 913 | 914 | .align-content-stretch { 915 | -ms-flex-line-pack: stretch !important; 916 | align-content: stretch !important; 917 | } 918 | 919 | .align-self-auto { 920 | -ms-flex-item-align: auto !important; 921 | align-self: auto !important; 922 | } 923 | 924 | .align-self-start { 925 | -ms-flex-item-align: start !important; 926 | align-self: flex-start !important; 927 | } 928 | 929 | .align-self-end { 930 | -ms-flex-item-align: end !important; 931 | align-self: flex-end !important; 932 | } 933 | 934 | .align-self-center { 935 | -ms-flex-item-align: center !important; 936 | align-self: center !important; 937 | } 938 | 939 | .align-self-baseline { 940 | -ms-flex-item-align: baseline !important; 941 | align-self: baseline !important; 942 | } 943 | 944 | .align-self-stretch { 945 | -ms-flex-item-align: stretch !important; 946 | align-self: stretch !important; 947 | } 948 | 949 | @media (min-width: 576px) { 950 | .flex-sm-row { 951 | -ms-flex-direction: row !important; 952 | flex-direction: row !important; 953 | } 954 | .flex-sm-column { 955 | -ms-flex-direction: column !important; 956 | flex-direction: column !important; 957 | } 958 | .flex-sm-row-reverse { 959 | -ms-flex-direction: row-reverse !important; 960 | flex-direction: row-reverse !important; 961 | } 962 | .flex-sm-column-reverse { 963 | -ms-flex-direction: column-reverse !important; 964 | flex-direction: column-reverse !important; 965 | } 966 | .flex-sm-wrap { 967 | -ms-flex-wrap: wrap !important; 968 | flex-wrap: wrap !important; 969 | } 970 | .flex-sm-nowrap { 971 | -ms-flex-wrap: nowrap !important; 972 | flex-wrap: nowrap !important; 973 | } 974 | .flex-sm-wrap-reverse { 975 | -ms-flex-wrap: wrap-reverse !important; 976 | flex-wrap: wrap-reverse !important; 977 | } 978 | .justify-content-sm-start { 979 | -ms-flex-pack: start !important; 980 | justify-content: flex-start !important; 981 | } 982 | .justify-content-sm-end { 983 | -ms-flex-pack: end !important; 984 | justify-content: flex-end !important; 985 | } 986 | .justify-content-sm-center { 987 | -ms-flex-pack: center !important; 988 | justify-content: center !important; 989 | } 990 | .justify-content-sm-between { 991 | -ms-flex-pack: justify !important; 992 | justify-content: space-between !important; 993 | } 994 | .justify-content-sm-around { 995 | -ms-flex-pack: distribute !important; 996 | justify-content: space-around !important; 997 | } 998 | .align-items-sm-start { 999 | -ms-flex-align: start !important; 1000 | align-items: flex-start !important; 1001 | } 1002 | .align-items-sm-end { 1003 | -ms-flex-align: end !important; 1004 | align-items: flex-end !important; 1005 | } 1006 | .align-items-sm-center { 1007 | -ms-flex-align: center !important; 1008 | align-items: center !important; 1009 | } 1010 | .align-items-sm-baseline { 1011 | -ms-flex-align: baseline !important; 1012 | align-items: baseline !important; 1013 | } 1014 | .align-items-sm-stretch { 1015 | -ms-flex-align: stretch !important; 1016 | align-items: stretch !important; 1017 | } 1018 | .align-content-sm-start { 1019 | -ms-flex-line-pack: start !important; 1020 | align-content: flex-start !important; 1021 | } 1022 | .align-content-sm-end { 1023 | -ms-flex-line-pack: end !important; 1024 | align-content: flex-end !important; 1025 | } 1026 | .align-content-sm-center { 1027 | -ms-flex-line-pack: center !important; 1028 | align-content: center !important; 1029 | } 1030 | .align-content-sm-between { 1031 | -ms-flex-line-pack: justify !important; 1032 | align-content: space-between !important; 1033 | } 1034 | .align-content-sm-around { 1035 | -ms-flex-line-pack: distribute !important; 1036 | align-content: space-around !important; 1037 | } 1038 | .align-content-sm-stretch { 1039 | -ms-flex-line-pack: stretch !important; 1040 | align-content: stretch !important; 1041 | } 1042 | .align-self-sm-auto { 1043 | -ms-flex-item-align: auto !important; 1044 | align-self: auto !important; 1045 | } 1046 | .align-self-sm-start { 1047 | -ms-flex-item-align: start !important; 1048 | align-self: flex-start !important; 1049 | } 1050 | .align-self-sm-end { 1051 | -ms-flex-item-align: end !important; 1052 | align-self: flex-end !important; 1053 | } 1054 | .align-self-sm-center { 1055 | -ms-flex-item-align: center !important; 1056 | align-self: center !important; 1057 | } 1058 | .align-self-sm-baseline { 1059 | -ms-flex-item-align: baseline !important; 1060 | align-self: baseline !important; 1061 | } 1062 | .align-self-sm-stretch { 1063 | -ms-flex-item-align: stretch !important; 1064 | align-self: stretch !important; 1065 | } 1066 | } 1067 | 1068 | @media (min-width: 768px) { 1069 | .flex-md-row { 1070 | -ms-flex-direction: row !important; 1071 | flex-direction: row !important; 1072 | } 1073 | .flex-md-column { 1074 | -ms-flex-direction: column !important; 1075 | flex-direction: column !important; 1076 | } 1077 | .flex-md-row-reverse { 1078 | -ms-flex-direction: row-reverse !important; 1079 | flex-direction: row-reverse !important; 1080 | } 1081 | .flex-md-column-reverse { 1082 | -ms-flex-direction: column-reverse !important; 1083 | flex-direction: column-reverse !important; 1084 | } 1085 | .flex-md-wrap { 1086 | -ms-flex-wrap: wrap !important; 1087 | flex-wrap: wrap !important; 1088 | } 1089 | .flex-md-nowrap { 1090 | -ms-flex-wrap: nowrap !important; 1091 | flex-wrap: nowrap !important; 1092 | } 1093 | .flex-md-wrap-reverse { 1094 | -ms-flex-wrap: wrap-reverse !important; 1095 | flex-wrap: wrap-reverse !important; 1096 | } 1097 | .justify-content-md-start { 1098 | -ms-flex-pack: start !important; 1099 | justify-content: flex-start !important; 1100 | } 1101 | .justify-content-md-end { 1102 | -ms-flex-pack: end !important; 1103 | justify-content: flex-end !important; 1104 | } 1105 | .justify-content-md-center { 1106 | -ms-flex-pack: center !important; 1107 | justify-content: center !important; 1108 | } 1109 | .justify-content-md-between { 1110 | -ms-flex-pack: justify !important; 1111 | justify-content: space-between !important; 1112 | } 1113 | .justify-content-md-around { 1114 | -ms-flex-pack: distribute !important; 1115 | justify-content: space-around !important; 1116 | } 1117 | .align-items-md-start { 1118 | -ms-flex-align: start !important; 1119 | align-items: flex-start !important; 1120 | } 1121 | .align-items-md-end { 1122 | -ms-flex-align: end !important; 1123 | align-items: flex-end !important; 1124 | } 1125 | .align-items-md-center { 1126 | -ms-flex-align: center !important; 1127 | align-items: center !important; 1128 | } 1129 | .align-items-md-baseline { 1130 | -ms-flex-align: baseline !important; 1131 | align-items: baseline !important; 1132 | } 1133 | .align-items-md-stretch { 1134 | -ms-flex-align: stretch !important; 1135 | align-items: stretch !important; 1136 | } 1137 | .align-content-md-start { 1138 | -ms-flex-line-pack: start !important; 1139 | align-content: flex-start !important; 1140 | } 1141 | .align-content-md-end { 1142 | -ms-flex-line-pack: end !important; 1143 | align-content: flex-end !important; 1144 | } 1145 | .align-content-md-center { 1146 | -ms-flex-line-pack: center !important; 1147 | align-content: center !important; 1148 | } 1149 | .align-content-md-between { 1150 | -ms-flex-line-pack: justify !important; 1151 | align-content: space-between !important; 1152 | } 1153 | .align-content-md-around { 1154 | -ms-flex-line-pack: distribute !important; 1155 | align-content: space-around !important; 1156 | } 1157 | .align-content-md-stretch { 1158 | -ms-flex-line-pack: stretch !important; 1159 | align-content: stretch !important; 1160 | } 1161 | .align-self-md-auto { 1162 | -ms-flex-item-align: auto !important; 1163 | align-self: auto !important; 1164 | } 1165 | .align-self-md-start { 1166 | -ms-flex-item-align: start !important; 1167 | align-self: flex-start !important; 1168 | } 1169 | .align-self-md-end { 1170 | -ms-flex-item-align: end !important; 1171 | align-self: flex-end !important; 1172 | } 1173 | .align-self-md-center { 1174 | -ms-flex-item-align: center !important; 1175 | align-self: center !important; 1176 | } 1177 | .align-self-md-baseline { 1178 | -ms-flex-item-align: baseline !important; 1179 | align-self: baseline !important; 1180 | } 1181 | .align-self-md-stretch { 1182 | -ms-flex-item-align: stretch !important; 1183 | align-self: stretch !important; 1184 | } 1185 | } 1186 | 1187 | @media (min-width: 992px) { 1188 | .flex-lg-row { 1189 | -ms-flex-direction: row !important; 1190 | flex-direction: row !important; 1191 | } 1192 | .flex-lg-column { 1193 | -ms-flex-direction: column !important; 1194 | flex-direction: column !important; 1195 | } 1196 | .flex-lg-row-reverse { 1197 | -ms-flex-direction: row-reverse !important; 1198 | flex-direction: row-reverse !important; 1199 | } 1200 | .flex-lg-column-reverse { 1201 | -ms-flex-direction: column-reverse !important; 1202 | flex-direction: column-reverse !important; 1203 | } 1204 | .flex-lg-wrap { 1205 | -ms-flex-wrap: wrap !important; 1206 | flex-wrap: wrap !important; 1207 | } 1208 | .flex-lg-nowrap { 1209 | -ms-flex-wrap: nowrap !important; 1210 | flex-wrap: nowrap !important; 1211 | } 1212 | .flex-lg-wrap-reverse { 1213 | -ms-flex-wrap: wrap-reverse !important; 1214 | flex-wrap: wrap-reverse !important; 1215 | } 1216 | .justify-content-lg-start { 1217 | -ms-flex-pack: start !important; 1218 | justify-content: flex-start !important; 1219 | } 1220 | .justify-content-lg-end { 1221 | -ms-flex-pack: end !important; 1222 | justify-content: flex-end !important; 1223 | } 1224 | .justify-content-lg-center { 1225 | -ms-flex-pack: center !important; 1226 | justify-content: center !important; 1227 | } 1228 | .justify-content-lg-between { 1229 | -ms-flex-pack: justify !important; 1230 | justify-content: space-between !important; 1231 | } 1232 | .justify-content-lg-around { 1233 | -ms-flex-pack: distribute !important; 1234 | justify-content: space-around !important; 1235 | } 1236 | .align-items-lg-start { 1237 | -ms-flex-align: start !important; 1238 | align-items: flex-start !important; 1239 | } 1240 | .align-items-lg-end { 1241 | -ms-flex-align: end !important; 1242 | align-items: flex-end !important; 1243 | } 1244 | .align-items-lg-center { 1245 | -ms-flex-align: center !important; 1246 | align-items: center !important; 1247 | } 1248 | .align-items-lg-baseline { 1249 | -ms-flex-align: baseline !important; 1250 | align-items: baseline !important; 1251 | } 1252 | .align-items-lg-stretch { 1253 | -ms-flex-align: stretch !important; 1254 | align-items: stretch !important; 1255 | } 1256 | .align-content-lg-start { 1257 | -ms-flex-line-pack: start !important; 1258 | align-content: flex-start !important; 1259 | } 1260 | .align-content-lg-end { 1261 | -ms-flex-line-pack: end !important; 1262 | align-content: flex-end !important; 1263 | } 1264 | .align-content-lg-center { 1265 | -ms-flex-line-pack: center !important; 1266 | align-content: center !important; 1267 | } 1268 | .align-content-lg-between { 1269 | -ms-flex-line-pack: justify !important; 1270 | align-content: space-between !important; 1271 | } 1272 | .align-content-lg-around { 1273 | -ms-flex-line-pack: distribute !important; 1274 | align-content: space-around !important; 1275 | } 1276 | .align-content-lg-stretch { 1277 | -ms-flex-line-pack: stretch !important; 1278 | align-content: stretch !important; 1279 | } 1280 | .align-self-lg-auto { 1281 | -ms-flex-item-align: auto !important; 1282 | align-self: auto !important; 1283 | } 1284 | .align-self-lg-start { 1285 | -ms-flex-item-align: start !important; 1286 | align-self: flex-start !important; 1287 | } 1288 | .align-self-lg-end { 1289 | -ms-flex-item-align: end !important; 1290 | align-self: flex-end !important; 1291 | } 1292 | .align-self-lg-center { 1293 | -ms-flex-item-align: center !important; 1294 | align-self: center !important; 1295 | } 1296 | .align-self-lg-baseline { 1297 | -ms-flex-item-align: baseline !important; 1298 | align-self: baseline !important; 1299 | } 1300 | .align-self-lg-stretch { 1301 | -ms-flex-item-align: stretch !important; 1302 | align-self: stretch !important; 1303 | } 1304 | } 1305 | 1306 | @media (min-width: 1200px) { 1307 | .flex-xl-row { 1308 | -ms-flex-direction: row !important; 1309 | flex-direction: row !important; 1310 | } 1311 | .flex-xl-column { 1312 | -ms-flex-direction: column !important; 1313 | flex-direction: column !important; 1314 | } 1315 | .flex-xl-row-reverse { 1316 | -ms-flex-direction: row-reverse !important; 1317 | flex-direction: row-reverse !important; 1318 | } 1319 | .flex-xl-column-reverse { 1320 | -ms-flex-direction: column-reverse !important; 1321 | flex-direction: column-reverse !important; 1322 | } 1323 | .flex-xl-wrap { 1324 | -ms-flex-wrap: wrap !important; 1325 | flex-wrap: wrap !important; 1326 | } 1327 | .flex-xl-nowrap { 1328 | -ms-flex-wrap: nowrap !important; 1329 | flex-wrap: nowrap !important; 1330 | } 1331 | .flex-xl-wrap-reverse { 1332 | -ms-flex-wrap: wrap-reverse !important; 1333 | flex-wrap: wrap-reverse !important; 1334 | } 1335 | .justify-content-xl-start { 1336 | -ms-flex-pack: start !important; 1337 | justify-content: flex-start !important; 1338 | } 1339 | .justify-content-xl-end { 1340 | -ms-flex-pack: end !important; 1341 | justify-content: flex-end !important; 1342 | } 1343 | .justify-content-xl-center { 1344 | -ms-flex-pack: center !important; 1345 | justify-content: center !important; 1346 | } 1347 | .justify-content-xl-between { 1348 | -ms-flex-pack: justify !important; 1349 | justify-content: space-between !important; 1350 | } 1351 | .justify-content-xl-around { 1352 | -ms-flex-pack: distribute !important; 1353 | justify-content: space-around !important; 1354 | } 1355 | .align-items-xl-start { 1356 | -ms-flex-align: start !important; 1357 | align-items: flex-start !important; 1358 | } 1359 | .align-items-xl-end { 1360 | -ms-flex-align: end !important; 1361 | align-items: flex-end !important; 1362 | } 1363 | .align-items-xl-center { 1364 | -ms-flex-align: center !important; 1365 | align-items: center !important; 1366 | } 1367 | .align-items-xl-baseline { 1368 | -ms-flex-align: baseline !important; 1369 | align-items: baseline !important; 1370 | } 1371 | .align-items-xl-stretch { 1372 | -ms-flex-align: stretch !important; 1373 | align-items: stretch !important; 1374 | } 1375 | .align-content-xl-start { 1376 | -ms-flex-line-pack: start !important; 1377 | align-content: flex-start !important; 1378 | } 1379 | .align-content-xl-end { 1380 | -ms-flex-line-pack: end !important; 1381 | align-content: flex-end !important; 1382 | } 1383 | .align-content-xl-center { 1384 | -ms-flex-line-pack: center !important; 1385 | align-content: center !important; 1386 | } 1387 | .align-content-xl-between { 1388 | -ms-flex-line-pack: justify !important; 1389 | align-content: space-between !important; 1390 | } 1391 | .align-content-xl-around { 1392 | -ms-flex-line-pack: distribute !important; 1393 | align-content: space-around !important; 1394 | } 1395 | .align-content-xl-stretch { 1396 | -ms-flex-line-pack: stretch !important; 1397 | align-content: stretch !important; 1398 | } 1399 | .align-self-xl-auto { 1400 | -ms-flex-item-align: auto !important; 1401 | align-self: auto !important; 1402 | } 1403 | .align-self-xl-start { 1404 | -ms-flex-item-align: start !important; 1405 | align-self: flex-start !important; 1406 | } 1407 | .align-self-xl-end { 1408 | -ms-flex-item-align: end !important; 1409 | align-self: flex-end !important; 1410 | } 1411 | .align-self-xl-center { 1412 | -ms-flex-item-align: center !important; 1413 | align-self: center !important; 1414 | } 1415 | .align-self-xl-baseline { 1416 | -ms-flex-item-align: baseline !important; 1417 | align-self: baseline !important; 1418 | } 1419 | .align-self-xl-stretch { 1420 | -ms-flex-item-align: stretch !important; 1421 | align-self: stretch !important; 1422 | } 1423 | } 1424 | 1425 | .align-baseline { 1426 | vertical-align: baseline !important; 1427 | } 1428 | 1429 | .align-top { 1430 | vertical-align: top !important; 1431 | } 1432 | 1433 | .align-middle { 1434 | vertical-align: middle !important; 1435 | } 1436 | 1437 | .align-bottom { 1438 | vertical-align: bottom !important; 1439 | } 1440 | 1441 | .align-text-bottom { 1442 | vertical-align: text-bottom !important; 1443 | } 1444 | 1445 | .align-text-top { 1446 | vertical-align: text-top !important; 1447 | } 1448 | 1449 | .border { 1450 | border: 1px solid #e9ecef !important; 1451 | } 1452 | 1453 | .border-0 { 1454 | border: 0 !important; 1455 | } 1456 | 1457 | .border-top-0 { 1458 | border-top: 0 !important; 1459 | } 1460 | 1461 | .border-right-0 { 1462 | border-right: 0 !important; 1463 | } 1464 | 1465 | .border-bottom-0 { 1466 | border-bottom: 0 !important; 1467 | } 1468 | 1469 | .border-left-0 { 1470 | border-left: 0 !important; 1471 | } 1472 | 1473 | .clearfix::after { 1474 | display: block; 1475 | clear: both; 1476 | content: ''; 1477 | } 1478 | 1479 | .d-none { 1480 | display: none !important; 1481 | } 1482 | 1483 | .d-inline { 1484 | display: inline !important; 1485 | } 1486 | 1487 | .d-inline-block { 1488 | display: inline-block !important; 1489 | } 1490 | 1491 | .d-block { 1492 | display: block !important; 1493 | } 1494 | 1495 | .d-table { 1496 | display: table !important; 1497 | } 1498 | 1499 | .d-table-cell { 1500 | display: table-cell !important; 1501 | } 1502 | 1503 | .d-flex { 1504 | display: -ms-flexbox !important; 1505 | display: flex !important; 1506 | } 1507 | 1508 | .d-inline-flex { 1509 | display: -ms-inline-flexbox !important; 1510 | display: inline-flex !important; 1511 | } 1512 | 1513 | @media (min-width: 576px) { 1514 | .d-sm-none { 1515 | display: none !important; 1516 | } 1517 | .d-sm-inline { 1518 | display: inline !important; 1519 | } 1520 | .d-sm-inline-block { 1521 | display: inline-block !important; 1522 | } 1523 | .d-sm-block { 1524 | display: block !important; 1525 | } 1526 | .d-sm-table { 1527 | display: table !important; 1528 | } 1529 | .d-sm-table-cell { 1530 | display: table-cell !important; 1531 | } 1532 | .d-sm-flex { 1533 | display: -ms-flexbox !important; 1534 | display: flex !important; 1535 | } 1536 | .d-sm-inline-flex { 1537 | display: -ms-inline-flexbox !important; 1538 | display: inline-flex !important; 1539 | } 1540 | } 1541 | 1542 | @media (min-width: 768px) { 1543 | .d-md-none { 1544 | display: none !important; 1545 | } 1546 | .d-md-inline { 1547 | display: inline !important; 1548 | } 1549 | .d-md-inline-block { 1550 | display: inline-block !important; 1551 | } 1552 | .d-md-block { 1553 | display: block !important; 1554 | } 1555 | .d-md-table { 1556 | display: table !important; 1557 | } 1558 | .d-md-table-cell { 1559 | display: table-cell !important; 1560 | } 1561 | .d-md-flex { 1562 | display: -ms-flexbox !important; 1563 | display: flex !important; 1564 | } 1565 | .d-md-inline-flex { 1566 | display: -ms-inline-flexbox !important; 1567 | display: inline-flex !important; 1568 | } 1569 | } 1570 | 1571 | @media (min-width: 992px) { 1572 | .d-lg-none { 1573 | display: none !important; 1574 | } 1575 | .d-lg-inline { 1576 | display: inline !important; 1577 | } 1578 | .d-lg-inline-block { 1579 | display: inline-block !important; 1580 | } 1581 | .d-lg-block { 1582 | display: block !important; 1583 | } 1584 | .d-lg-table { 1585 | display: table !important; 1586 | } 1587 | .d-lg-table-cell { 1588 | display: table-cell !important; 1589 | } 1590 | .d-lg-flex { 1591 | display: -ms-flexbox !important; 1592 | display: flex !important; 1593 | } 1594 | .d-lg-inline-flex { 1595 | display: -ms-inline-flexbox !important; 1596 | display: inline-flex !important; 1597 | } 1598 | } 1599 | 1600 | @media (min-width: 1200px) { 1601 | .d-xl-none { 1602 | display: none !important; 1603 | } 1604 | .d-xl-inline { 1605 | display: inline !important; 1606 | } 1607 | .d-xl-inline-block { 1608 | display: inline-block !important; 1609 | } 1610 | .d-xl-block { 1611 | display: block !important; 1612 | } 1613 | .d-xl-table { 1614 | display: table !important; 1615 | } 1616 | .d-xl-table-cell { 1617 | display: table-cell !important; 1618 | } 1619 | .d-xl-flex { 1620 | display: -ms-flexbox !important; 1621 | display: flex !important; 1622 | } 1623 | .d-xl-inline-flex { 1624 | display: -ms-inline-flexbox !important; 1625 | display: inline-flex !important; 1626 | } 1627 | } 1628 | 1629 | .d-print-block { 1630 | display: none !important; 1631 | } 1632 | 1633 | @media print { 1634 | .d-print-block { 1635 | display: block !important; 1636 | } 1637 | } 1638 | 1639 | .d-print-inline { 1640 | display: none !important; 1641 | } 1642 | 1643 | @media print { 1644 | .d-print-inline { 1645 | display: inline !important; 1646 | } 1647 | } 1648 | 1649 | .d-print-inline-block { 1650 | display: none !important; 1651 | } 1652 | 1653 | @media print { 1654 | .d-print-inline-block { 1655 | display: inline-block !important; 1656 | } 1657 | } 1658 | 1659 | @media print { 1660 | .d-print-none { 1661 | display: none !important; 1662 | } 1663 | } 1664 | 1665 | .embed-responsive { 1666 | position: relative; 1667 | display: block; 1668 | width: 100%; 1669 | padding: 0; 1670 | overflow: hidden; 1671 | } 1672 | 1673 | .embed-responsive::before { 1674 | display: block; 1675 | content: ''; 1676 | } 1677 | 1678 | .embed-responsive .embed-responsive-item, 1679 | .embed-responsive iframe, 1680 | .embed-responsive embed, 1681 | .embed-responsive object, 1682 | .embed-responsive video { 1683 | position: absolute; 1684 | top: 0; 1685 | bottom: 0; 1686 | left: 0; 1687 | width: 100%; 1688 | height: 100%; 1689 | border: 0; 1690 | } 1691 | 1692 | .embed-responsive-21by9::before { 1693 | padding-top: 42.857143%; 1694 | } 1695 | 1696 | .embed-responsive-16by9::before { 1697 | padding-top: 56.25%; 1698 | } 1699 | 1700 | .embed-responsive-4by3::before { 1701 | padding-top: 75%; 1702 | } 1703 | 1704 | .embed-responsive-1by1::before { 1705 | padding-top: 100%; 1706 | } 1707 | 1708 | .flex-row { 1709 | -ms-flex-direction: row !important; 1710 | flex-direction: row !important; 1711 | } 1712 | 1713 | .flex-column { 1714 | -ms-flex-direction: column !important; 1715 | flex-direction: column !important; 1716 | } 1717 | 1718 | .flex-row-reverse { 1719 | -ms-flex-direction: row-reverse !important; 1720 | flex-direction: row-reverse !important; 1721 | } 1722 | 1723 | .flex-column-reverse { 1724 | -ms-flex-direction: column-reverse !important; 1725 | flex-direction: column-reverse !important; 1726 | } 1727 | 1728 | .flex-wrap { 1729 | -ms-flex-wrap: wrap !important; 1730 | flex-wrap: wrap !important; 1731 | } 1732 | 1733 | .flex-nowrap { 1734 | -ms-flex-wrap: nowrap !important; 1735 | flex-wrap: nowrap !important; 1736 | } 1737 | 1738 | .flex-wrap-reverse { 1739 | -ms-flex-wrap: wrap-reverse !important; 1740 | flex-wrap: wrap-reverse !important; 1741 | } 1742 | 1743 | .justify-content-start { 1744 | -ms-flex-pack: start !important; 1745 | justify-content: flex-start !important; 1746 | } 1747 | 1748 | .justify-content-end { 1749 | -ms-flex-pack: end !important; 1750 | justify-content: flex-end !important; 1751 | } 1752 | 1753 | .justify-content-center { 1754 | -ms-flex-pack: center !important; 1755 | justify-content: center !important; 1756 | } 1757 | 1758 | .justify-content-between { 1759 | -ms-flex-pack: justify !important; 1760 | justify-content: space-between !important; 1761 | } 1762 | 1763 | .justify-content-around { 1764 | -ms-flex-pack: distribute !important; 1765 | justify-content: space-around !important; 1766 | } 1767 | 1768 | .align-items-start { 1769 | -ms-flex-align: start !important; 1770 | align-items: flex-start !important; 1771 | } 1772 | 1773 | .align-items-end { 1774 | -ms-flex-align: end !important; 1775 | align-items: flex-end !important; 1776 | } 1777 | 1778 | .align-items-center { 1779 | -ms-flex-align: center !important; 1780 | align-items: center !important; 1781 | } 1782 | 1783 | .align-items-baseline { 1784 | -ms-flex-align: baseline !important; 1785 | align-items: baseline !important; 1786 | } 1787 | 1788 | .align-items-stretch { 1789 | -ms-flex-align: stretch !important; 1790 | align-items: stretch !important; 1791 | } 1792 | 1793 | .align-content-start { 1794 | -ms-flex-line-pack: start !important; 1795 | align-content: flex-start !important; 1796 | } 1797 | 1798 | .align-content-end { 1799 | -ms-flex-line-pack: end !important; 1800 | align-content: flex-end !important; 1801 | } 1802 | 1803 | .align-content-center { 1804 | -ms-flex-line-pack: center !important; 1805 | align-content: center !important; 1806 | } 1807 | 1808 | .align-content-between { 1809 | -ms-flex-line-pack: justify !important; 1810 | align-content: space-between !important; 1811 | } 1812 | 1813 | .align-content-around { 1814 | -ms-flex-line-pack: distribute !important; 1815 | align-content: space-around !important; 1816 | } 1817 | 1818 | .align-content-stretch { 1819 | -ms-flex-line-pack: stretch !important; 1820 | align-content: stretch !important; 1821 | } 1822 | 1823 | .align-self-auto { 1824 | -ms-flex-item-align: auto !important; 1825 | align-self: auto !important; 1826 | } 1827 | 1828 | .align-self-start { 1829 | -ms-flex-item-align: start !important; 1830 | align-self: flex-start !important; 1831 | } 1832 | 1833 | .align-self-end { 1834 | -ms-flex-item-align: end !important; 1835 | align-self: flex-end !important; 1836 | } 1837 | 1838 | .align-self-center { 1839 | -ms-flex-item-align: center !important; 1840 | align-self: center !important; 1841 | } 1842 | 1843 | .align-self-baseline { 1844 | -ms-flex-item-align: baseline !important; 1845 | align-self: baseline !important; 1846 | } 1847 | 1848 | .align-self-stretch { 1849 | -ms-flex-item-align: stretch !important; 1850 | align-self: stretch !important; 1851 | } 1852 | 1853 | @media (min-width: 576px) { 1854 | .flex-sm-row { 1855 | -ms-flex-direction: row !important; 1856 | flex-direction: row !important; 1857 | } 1858 | .flex-sm-column { 1859 | -ms-flex-direction: column !important; 1860 | flex-direction: column !important; 1861 | } 1862 | .flex-sm-row-reverse { 1863 | -ms-flex-direction: row-reverse !important; 1864 | flex-direction: row-reverse !important; 1865 | } 1866 | .flex-sm-column-reverse { 1867 | -ms-flex-direction: column-reverse !important; 1868 | flex-direction: column-reverse !important; 1869 | } 1870 | .flex-sm-wrap { 1871 | -ms-flex-wrap: wrap !important; 1872 | flex-wrap: wrap !important; 1873 | } 1874 | .flex-sm-nowrap { 1875 | -ms-flex-wrap: nowrap !important; 1876 | flex-wrap: nowrap !important; 1877 | } 1878 | .flex-sm-wrap-reverse { 1879 | -ms-flex-wrap: wrap-reverse !important; 1880 | flex-wrap: wrap-reverse !important; 1881 | } 1882 | .justify-content-sm-start { 1883 | -ms-flex-pack: start !important; 1884 | justify-content: flex-start !important; 1885 | } 1886 | .justify-content-sm-end { 1887 | -ms-flex-pack: end !important; 1888 | justify-content: flex-end !important; 1889 | } 1890 | .justify-content-sm-center { 1891 | -ms-flex-pack: center !important; 1892 | justify-content: center !important; 1893 | } 1894 | .justify-content-sm-between { 1895 | -ms-flex-pack: justify !important; 1896 | justify-content: space-between !important; 1897 | } 1898 | .justify-content-sm-around { 1899 | -ms-flex-pack: distribute !important; 1900 | justify-content: space-around !important; 1901 | } 1902 | .align-items-sm-start { 1903 | -ms-flex-align: start !important; 1904 | align-items: flex-start !important; 1905 | } 1906 | .align-items-sm-end { 1907 | -ms-flex-align: end !important; 1908 | align-items: flex-end !important; 1909 | } 1910 | .align-items-sm-center { 1911 | -ms-flex-align: center !important; 1912 | align-items: center !important; 1913 | } 1914 | .align-items-sm-baseline { 1915 | -ms-flex-align: baseline !important; 1916 | align-items: baseline !important; 1917 | } 1918 | .align-items-sm-stretch { 1919 | -ms-flex-align: stretch !important; 1920 | align-items: stretch !important; 1921 | } 1922 | .align-content-sm-start { 1923 | -ms-flex-line-pack: start !important; 1924 | align-content: flex-start !important; 1925 | } 1926 | .align-content-sm-end { 1927 | -ms-flex-line-pack: end !important; 1928 | align-content: flex-end !important; 1929 | } 1930 | .align-content-sm-center { 1931 | -ms-flex-line-pack: center !important; 1932 | align-content: center !important; 1933 | } 1934 | .align-content-sm-between { 1935 | -ms-flex-line-pack: justify !important; 1936 | align-content: space-between !important; 1937 | } 1938 | .align-content-sm-around { 1939 | -ms-flex-line-pack: distribute !important; 1940 | align-content: space-around !important; 1941 | } 1942 | .align-content-sm-stretch { 1943 | -ms-flex-line-pack: stretch !important; 1944 | align-content: stretch !important; 1945 | } 1946 | .align-self-sm-auto { 1947 | -ms-flex-item-align: auto !important; 1948 | align-self: auto !important; 1949 | } 1950 | .align-self-sm-start { 1951 | -ms-flex-item-align: start !important; 1952 | align-self: flex-start !important; 1953 | } 1954 | .align-self-sm-end { 1955 | -ms-flex-item-align: end !important; 1956 | align-self: flex-end !important; 1957 | } 1958 | .align-self-sm-center { 1959 | -ms-flex-item-align: center !important; 1960 | align-self: center !important; 1961 | } 1962 | .align-self-sm-baseline { 1963 | -ms-flex-item-align: baseline !important; 1964 | align-self: baseline !important; 1965 | } 1966 | .align-self-sm-stretch { 1967 | -ms-flex-item-align: stretch !important; 1968 | align-self: stretch !important; 1969 | } 1970 | } 1971 | 1972 | @media (min-width: 768px) { 1973 | .flex-md-row { 1974 | -ms-flex-direction: row !important; 1975 | flex-direction: row !important; 1976 | } 1977 | .flex-md-column { 1978 | -ms-flex-direction: column !important; 1979 | flex-direction: column !important; 1980 | } 1981 | .flex-md-row-reverse { 1982 | -ms-flex-direction: row-reverse !important; 1983 | flex-direction: row-reverse !important; 1984 | } 1985 | .flex-md-column-reverse { 1986 | -ms-flex-direction: column-reverse !important; 1987 | flex-direction: column-reverse !important; 1988 | } 1989 | .flex-md-wrap { 1990 | -ms-flex-wrap: wrap !important; 1991 | flex-wrap: wrap !important; 1992 | } 1993 | .flex-md-nowrap { 1994 | -ms-flex-wrap: nowrap !important; 1995 | flex-wrap: nowrap !important; 1996 | } 1997 | .flex-md-wrap-reverse { 1998 | -ms-flex-wrap: wrap-reverse !important; 1999 | flex-wrap: wrap-reverse !important; 2000 | } 2001 | .justify-content-md-start { 2002 | -ms-flex-pack: start !important; 2003 | justify-content: flex-start !important; 2004 | } 2005 | .justify-content-md-end { 2006 | -ms-flex-pack: end !important; 2007 | justify-content: flex-end !important; 2008 | } 2009 | .justify-content-md-center { 2010 | -ms-flex-pack: center !important; 2011 | justify-content: center !important; 2012 | } 2013 | .justify-content-md-between { 2014 | -ms-flex-pack: justify !important; 2015 | justify-content: space-between !important; 2016 | } 2017 | .justify-content-md-around { 2018 | -ms-flex-pack: distribute !important; 2019 | justify-content: space-around !important; 2020 | } 2021 | .align-items-md-start { 2022 | -ms-flex-align: start !important; 2023 | align-items: flex-start !important; 2024 | } 2025 | .align-items-md-end { 2026 | -ms-flex-align: end !important; 2027 | align-items: flex-end !important; 2028 | } 2029 | .align-items-md-center { 2030 | -ms-flex-align: center !important; 2031 | align-items: center !important; 2032 | } 2033 | .align-items-md-baseline { 2034 | -ms-flex-align: baseline !important; 2035 | align-items: baseline !important; 2036 | } 2037 | .align-items-md-stretch { 2038 | -ms-flex-align: stretch !important; 2039 | align-items: stretch !important; 2040 | } 2041 | .align-content-md-start { 2042 | -ms-flex-line-pack: start !important; 2043 | align-content: flex-start !important; 2044 | } 2045 | .align-content-md-end { 2046 | -ms-flex-line-pack: end !important; 2047 | align-content: flex-end !important; 2048 | } 2049 | .align-content-md-center { 2050 | -ms-flex-line-pack: center !important; 2051 | align-content: center !important; 2052 | } 2053 | .align-content-md-between { 2054 | -ms-flex-line-pack: justify !important; 2055 | align-content: space-between !important; 2056 | } 2057 | .align-content-md-around { 2058 | -ms-flex-line-pack: distribute !important; 2059 | align-content: space-around !important; 2060 | } 2061 | .align-content-md-stretch { 2062 | -ms-flex-line-pack: stretch !important; 2063 | align-content: stretch !important; 2064 | } 2065 | .align-self-md-auto { 2066 | -ms-flex-item-align: auto !important; 2067 | align-self: auto !important; 2068 | } 2069 | .align-self-md-start { 2070 | -ms-flex-item-align: start !important; 2071 | align-self: flex-start !important; 2072 | } 2073 | .align-self-md-end { 2074 | -ms-flex-item-align: end !important; 2075 | align-self: flex-end !important; 2076 | } 2077 | .align-self-md-center { 2078 | -ms-flex-item-align: center !important; 2079 | align-self: center !important; 2080 | } 2081 | .align-self-md-baseline { 2082 | -ms-flex-item-align: baseline !important; 2083 | align-self: baseline !important; 2084 | } 2085 | .align-self-md-stretch { 2086 | -ms-flex-item-align: stretch !important; 2087 | align-self: stretch !important; 2088 | } 2089 | } 2090 | 2091 | @media (min-width: 992px) { 2092 | .flex-lg-row { 2093 | -ms-flex-direction: row !important; 2094 | flex-direction: row !important; 2095 | } 2096 | .flex-lg-column { 2097 | -ms-flex-direction: column !important; 2098 | flex-direction: column !important; 2099 | } 2100 | .flex-lg-row-reverse { 2101 | -ms-flex-direction: row-reverse !important; 2102 | flex-direction: row-reverse !important; 2103 | } 2104 | .flex-lg-column-reverse { 2105 | -ms-flex-direction: column-reverse !important; 2106 | flex-direction: column-reverse !important; 2107 | } 2108 | .flex-lg-wrap { 2109 | -ms-flex-wrap: wrap !important; 2110 | flex-wrap: wrap !important; 2111 | } 2112 | .flex-lg-nowrap { 2113 | -ms-flex-wrap: nowrap !important; 2114 | flex-wrap: nowrap !important; 2115 | } 2116 | .flex-lg-wrap-reverse { 2117 | -ms-flex-wrap: wrap-reverse !important; 2118 | flex-wrap: wrap-reverse !important; 2119 | } 2120 | .justify-content-lg-start { 2121 | -ms-flex-pack: start !important; 2122 | justify-content: flex-start !important; 2123 | } 2124 | .justify-content-lg-end { 2125 | -ms-flex-pack: end !important; 2126 | justify-content: flex-end !important; 2127 | } 2128 | .justify-content-lg-center { 2129 | -ms-flex-pack: center !important; 2130 | justify-content: center !important; 2131 | } 2132 | .justify-content-lg-between { 2133 | -ms-flex-pack: justify !important; 2134 | justify-content: space-between !important; 2135 | } 2136 | .justify-content-lg-around { 2137 | -ms-flex-pack: distribute !important; 2138 | justify-content: space-around !important; 2139 | } 2140 | .align-items-lg-start { 2141 | -ms-flex-align: start !important; 2142 | align-items: flex-start !important; 2143 | } 2144 | .align-items-lg-end { 2145 | -ms-flex-align: end !important; 2146 | align-items: flex-end !important; 2147 | } 2148 | .align-items-lg-center { 2149 | -ms-flex-align: center !important; 2150 | align-items: center !important; 2151 | } 2152 | .align-items-lg-baseline { 2153 | -ms-flex-align: baseline !important; 2154 | align-items: baseline !important; 2155 | } 2156 | .align-items-lg-stretch { 2157 | -ms-flex-align: stretch !important; 2158 | align-items: stretch !important; 2159 | } 2160 | .align-content-lg-start { 2161 | -ms-flex-line-pack: start !important; 2162 | align-content: flex-start !important; 2163 | } 2164 | .align-content-lg-end { 2165 | -ms-flex-line-pack: end !important; 2166 | align-content: flex-end !important; 2167 | } 2168 | .align-content-lg-center { 2169 | -ms-flex-line-pack: center !important; 2170 | align-content: center !important; 2171 | } 2172 | .align-content-lg-between { 2173 | -ms-flex-line-pack: justify !important; 2174 | align-content: space-between !important; 2175 | } 2176 | .align-content-lg-around { 2177 | -ms-flex-line-pack: distribute !important; 2178 | align-content: space-around !important; 2179 | } 2180 | .align-content-lg-stretch { 2181 | -ms-flex-line-pack: stretch !important; 2182 | align-content: stretch !important; 2183 | } 2184 | .align-self-lg-auto { 2185 | -ms-flex-item-align: auto !important; 2186 | align-self: auto !important; 2187 | } 2188 | .align-self-lg-start { 2189 | -ms-flex-item-align: start !important; 2190 | align-self: flex-start !important; 2191 | } 2192 | .align-self-lg-end { 2193 | -ms-flex-item-align: end !important; 2194 | align-self: flex-end !important; 2195 | } 2196 | .align-self-lg-center { 2197 | -ms-flex-item-align: center !important; 2198 | align-self: center !important; 2199 | } 2200 | .align-self-lg-baseline { 2201 | -ms-flex-item-align: baseline !important; 2202 | align-self: baseline !important; 2203 | } 2204 | .align-self-lg-stretch { 2205 | -ms-flex-item-align: stretch !important; 2206 | align-self: stretch !important; 2207 | } 2208 | } 2209 | 2210 | @media (min-width: 1200px) { 2211 | .flex-xl-row { 2212 | -ms-flex-direction: row !important; 2213 | flex-direction: row !important; 2214 | } 2215 | .flex-xl-column { 2216 | -ms-flex-direction: column !important; 2217 | flex-direction: column !important; 2218 | } 2219 | .flex-xl-row-reverse { 2220 | -ms-flex-direction: row-reverse !important; 2221 | flex-direction: row-reverse !important; 2222 | } 2223 | .flex-xl-column-reverse { 2224 | -ms-flex-direction: column-reverse !important; 2225 | flex-direction: column-reverse !important; 2226 | } 2227 | .flex-xl-wrap { 2228 | -ms-flex-wrap: wrap !important; 2229 | flex-wrap: wrap !important; 2230 | } 2231 | .flex-xl-nowrap { 2232 | -ms-flex-wrap: nowrap !important; 2233 | flex-wrap: nowrap !important; 2234 | } 2235 | .flex-xl-wrap-reverse { 2236 | -ms-flex-wrap: wrap-reverse !important; 2237 | flex-wrap: wrap-reverse !important; 2238 | } 2239 | .justify-content-xl-start { 2240 | -ms-flex-pack: start !important; 2241 | justify-content: flex-start !important; 2242 | } 2243 | .justify-content-xl-end { 2244 | -ms-flex-pack: end !important; 2245 | justify-content: flex-end !important; 2246 | } 2247 | .justify-content-xl-center { 2248 | -ms-flex-pack: center !important; 2249 | justify-content: center !important; 2250 | } 2251 | .justify-content-xl-between { 2252 | -ms-flex-pack: justify !important; 2253 | justify-content: space-between !important; 2254 | } 2255 | .justify-content-xl-around { 2256 | -ms-flex-pack: distribute !important; 2257 | justify-content: space-around !important; 2258 | } 2259 | .align-items-xl-start { 2260 | -ms-flex-align: start !important; 2261 | align-items: flex-start !important; 2262 | } 2263 | .align-items-xl-end { 2264 | -ms-flex-align: end !important; 2265 | align-items: flex-end !important; 2266 | } 2267 | .align-items-xl-center { 2268 | -ms-flex-align: center !important; 2269 | align-items: center !important; 2270 | } 2271 | .align-items-xl-baseline { 2272 | -ms-flex-align: baseline !important; 2273 | align-items: baseline !important; 2274 | } 2275 | .align-items-xl-stretch { 2276 | -ms-flex-align: stretch !important; 2277 | align-items: stretch !important; 2278 | } 2279 | .align-content-xl-start { 2280 | -ms-flex-line-pack: start !important; 2281 | align-content: flex-start !important; 2282 | } 2283 | .align-content-xl-end { 2284 | -ms-flex-line-pack: end !important; 2285 | align-content: flex-end !important; 2286 | } 2287 | .align-content-xl-center { 2288 | -ms-flex-line-pack: center !important; 2289 | align-content: center !important; 2290 | } 2291 | .align-content-xl-between { 2292 | -ms-flex-line-pack: justify !important; 2293 | align-content: space-between !important; 2294 | } 2295 | .align-content-xl-around { 2296 | -ms-flex-line-pack: distribute !important; 2297 | align-content: space-around !important; 2298 | } 2299 | .align-content-xl-stretch { 2300 | -ms-flex-line-pack: stretch !important; 2301 | align-content: stretch !important; 2302 | } 2303 | .align-self-xl-auto { 2304 | -ms-flex-item-align: auto !important; 2305 | align-self: auto !important; 2306 | } 2307 | .align-self-xl-start { 2308 | -ms-flex-item-align: start !important; 2309 | align-self: flex-start !important; 2310 | } 2311 | .align-self-xl-end { 2312 | -ms-flex-item-align: end !important; 2313 | align-self: flex-end !important; 2314 | } 2315 | .align-self-xl-center { 2316 | -ms-flex-item-align: center !important; 2317 | align-self: center !important; 2318 | } 2319 | .align-self-xl-baseline { 2320 | -ms-flex-item-align: baseline !important; 2321 | align-self: baseline !important; 2322 | } 2323 | .align-self-xl-stretch { 2324 | -ms-flex-item-align: stretch !important; 2325 | align-self: stretch !important; 2326 | } 2327 | } 2328 | 2329 | .float-left { 2330 | float: left !important; 2331 | } 2332 | 2333 | .float-right { 2334 | float: right !important; 2335 | } 2336 | 2337 | .float-none { 2338 | float: none !important; 2339 | } 2340 | 2341 | @media (min-width: 576px) { 2342 | .float-sm-left { 2343 | float: left !important; 2344 | } 2345 | .float-sm-right { 2346 | float: right !important; 2347 | } 2348 | .float-sm-none { 2349 | float: none !important; 2350 | } 2351 | } 2352 | 2353 | @media (min-width: 768px) { 2354 | .float-md-left { 2355 | float: left !important; 2356 | } 2357 | .float-md-right { 2358 | float: right !important; 2359 | } 2360 | .float-md-none { 2361 | float: none !important; 2362 | } 2363 | } 2364 | 2365 | @media (min-width: 992px) { 2366 | .float-lg-left { 2367 | float: left !important; 2368 | } 2369 | .float-lg-right { 2370 | float: right !important; 2371 | } 2372 | .float-lg-none { 2373 | float: none !important; 2374 | } 2375 | } 2376 | 2377 | @media (min-width: 1200px) { 2378 | .float-xl-left { 2379 | float: left !important; 2380 | } 2381 | .float-xl-right { 2382 | float: right !important; 2383 | } 2384 | .float-xl-none { 2385 | float: none !important; 2386 | } 2387 | } 2388 | 2389 | .w-25 { 2390 | width: 25% !important; 2391 | } 2392 | 2393 | .w-50 { 2394 | width: 50% !important; 2395 | } 2396 | 2397 | .w-75 { 2398 | width: 75% !important; 2399 | } 2400 | 2401 | .w-100 { 2402 | width: 100% !important; 2403 | } 2404 | 2405 | .h-25 { 2406 | height: 25% !important; 2407 | } 2408 | 2409 | .h-50 { 2410 | height: 50% !important; 2411 | } 2412 | 2413 | .h-75 { 2414 | height: 75% !important; 2415 | } 2416 | 2417 | .h-100 { 2418 | height: 100% !important; 2419 | } 2420 | 2421 | .mw-100 { 2422 | max-width: 100% !important; 2423 | } 2424 | 2425 | .mh-100 { 2426 | max-height: 100% !important; 2427 | } 2428 | 2429 | .m-0 { 2430 | margin: 0 !important; 2431 | } 2432 | 2433 | .mt-0 { 2434 | margin-top: 0 !important; 2435 | } 2436 | 2437 | .mr-0 { 2438 | margin-right: 0 !important; 2439 | } 2440 | 2441 | .mb-0 { 2442 | margin-bottom: 0 !important; 2443 | } 2444 | 2445 | .ml-0 { 2446 | margin-left: 0 !important; 2447 | } 2448 | 2449 | .mx-0 { 2450 | margin-right: 0 !important; 2451 | margin-left: 0 !important; 2452 | } 2453 | 2454 | .my-0 { 2455 | margin-top: 0 !important; 2456 | margin-bottom: 0 !important; 2457 | } 2458 | 2459 | .m-1 { 2460 | margin: 0.25rem !important; 2461 | } 2462 | 2463 | .mt-1 { 2464 | margin-top: 0.25rem !important; 2465 | } 2466 | 2467 | .mr-1 { 2468 | margin-right: 0.25rem !important; 2469 | } 2470 | 2471 | .mb-1 { 2472 | margin-bottom: 0.25rem !important; 2473 | } 2474 | 2475 | .ml-1 { 2476 | margin-left: 0.25rem !important; 2477 | } 2478 | 2479 | .mx-1 { 2480 | margin-right: 0.25rem !important; 2481 | margin-left: 0.25rem !important; 2482 | } 2483 | 2484 | .my-1 { 2485 | margin-top: 0.25rem !important; 2486 | margin-bottom: 0.25rem !important; 2487 | } 2488 | 2489 | .m-2 { 2490 | margin: 0.5rem !important; 2491 | } 2492 | 2493 | .mt-2 { 2494 | margin-top: 0.5rem !important; 2495 | } 2496 | 2497 | .mr-2 { 2498 | margin-right: 0.5rem !important; 2499 | } 2500 | 2501 | .mb-2 { 2502 | margin-bottom: 0.5rem !important; 2503 | } 2504 | 2505 | .ml-2 { 2506 | margin-left: 0.5rem !important; 2507 | } 2508 | 2509 | .mx-2 { 2510 | margin-right: 0.5rem !important; 2511 | margin-left: 0.5rem !important; 2512 | } 2513 | 2514 | .my-2 { 2515 | margin-top: 0.5rem !important; 2516 | margin-bottom: 0.5rem !important; 2517 | } 2518 | 2519 | .m-3 { 2520 | margin: 1rem !important; 2521 | } 2522 | 2523 | .mt-3 { 2524 | margin-top: 1rem !important; 2525 | } 2526 | 2527 | .mr-3 { 2528 | margin-right: 1rem !important; 2529 | } 2530 | 2531 | .mb-3 { 2532 | margin-bottom: 1rem !important; 2533 | } 2534 | 2535 | .ml-3 { 2536 | margin-left: 1rem !important; 2537 | } 2538 | 2539 | .mx-3 { 2540 | margin-right: 1rem !important; 2541 | margin-left: 1rem !important; 2542 | } 2543 | 2544 | .my-3 { 2545 | margin-top: 1rem !important; 2546 | margin-bottom: 1rem !important; 2547 | } 2548 | 2549 | .m-4 { 2550 | margin: 1.5rem !important; 2551 | } 2552 | 2553 | .mt-4 { 2554 | margin-top: 1.5rem !important; 2555 | } 2556 | 2557 | .mr-4 { 2558 | margin-right: 1.5rem !important; 2559 | } 2560 | 2561 | .mb-4 { 2562 | margin-bottom: 1.5rem !important; 2563 | } 2564 | 2565 | .ml-4 { 2566 | margin-left: 1.5rem !important; 2567 | } 2568 | 2569 | .mx-4 { 2570 | margin-right: 1.5rem !important; 2571 | margin-left: 1.5rem !important; 2572 | } 2573 | 2574 | .my-4 { 2575 | margin-top: 1.5rem !important; 2576 | margin-bottom: 1.5rem !important; 2577 | } 2578 | 2579 | .m-5 { 2580 | margin: 3rem !important; 2581 | } 2582 | 2583 | .mt-5 { 2584 | margin-top: 3rem !important; 2585 | } 2586 | 2587 | .mr-5 { 2588 | margin-right: 3rem !important; 2589 | } 2590 | 2591 | .mb-5 { 2592 | margin-bottom: 3rem !important; 2593 | } 2594 | 2595 | .ml-5 { 2596 | margin-left: 3rem !important; 2597 | } 2598 | 2599 | .mx-5 { 2600 | margin-right: 3rem !important; 2601 | margin-left: 3rem !important; 2602 | } 2603 | 2604 | .my-5 { 2605 | margin-top: 3rem !important; 2606 | margin-bottom: 3rem !important; 2607 | } 2608 | 2609 | .p-0 { 2610 | padding: 0 !important; 2611 | } 2612 | 2613 | .pt-0 { 2614 | padding-top: 0 !important; 2615 | } 2616 | 2617 | .pr-0 { 2618 | padding-right: 0 !important; 2619 | } 2620 | 2621 | .pb-0 { 2622 | padding-bottom: 0 !important; 2623 | } 2624 | 2625 | .pl-0 { 2626 | padding-left: 0 !important; 2627 | } 2628 | 2629 | .px-0 { 2630 | padding-right: 0 !important; 2631 | padding-left: 0 !important; 2632 | } 2633 | 2634 | .py-0 { 2635 | padding-top: 0 !important; 2636 | padding-bottom: 0 !important; 2637 | } 2638 | 2639 | .p-1 { 2640 | padding: 0.25rem !important; 2641 | } 2642 | 2643 | .pt-1 { 2644 | padding-top: 0.25rem !important; 2645 | } 2646 | 2647 | .pr-1 { 2648 | padding-right: 0.25rem !important; 2649 | } 2650 | 2651 | .pb-1 { 2652 | padding-bottom: 0.25rem !important; 2653 | } 2654 | 2655 | .pl-1 { 2656 | padding-left: 0.25rem !important; 2657 | } 2658 | 2659 | .px-1 { 2660 | padding-right: 0.25rem !important; 2661 | padding-left: 0.25rem !important; 2662 | } 2663 | 2664 | .py-1 { 2665 | padding-top: 0.25rem !important; 2666 | padding-bottom: 0.25rem !important; 2667 | } 2668 | 2669 | .p-2 { 2670 | padding: 0.5rem !important; 2671 | } 2672 | 2673 | .pt-2 { 2674 | padding-top: 0.5rem !important; 2675 | } 2676 | 2677 | .pr-2 { 2678 | padding-right: 0.5rem !important; 2679 | } 2680 | 2681 | .pb-2 { 2682 | padding-bottom: 0.5rem !important; 2683 | } 2684 | 2685 | .pl-2 { 2686 | padding-left: 0.5rem !important; 2687 | } 2688 | 2689 | .px-2 { 2690 | padding-right: 0.5rem !important; 2691 | padding-left: 0.5rem !important; 2692 | } 2693 | 2694 | .py-2 { 2695 | padding-top: 0.5rem !important; 2696 | padding-bottom: 0.5rem !important; 2697 | } 2698 | 2699 | .p-3 { 2700 | padding: 1rem !important; 2701 | } 2702 | 2703 | .pt-3 { 2704 | padding-top: 1rem !important; 2705 | } 2706 | 2707 | .pr-3 { 2708 | padding-right: 1rem !important; 2709 | } 2710 | 2711 | .pb-3 { 2712 | padding-bottom: 1rem !important; 2713 | } 2714 | 2715 | .pl-3 { 2716 | padding-left: 1rem !important; 2717 | } 2718 | 2719 | .px-3 { 2720 | padding-right: 1rem !important; 2721 | padding-left: 1rem !important; 2722 | } 2723 | 2724 | .py-3 { 2725 | padding-top: 1rem !important; 2726 | padding-bottom: 1rem !important; 2727 | } 2728 | 2729 | .p-4 { 2730 | padding: 1.5rem !important; 2731 | } 2732 | 2733 | .pt-4 { 2734 | padding-top: 1.5rem !important; 2735 | } 2736 | 2737 | .pr-4 { 2738 | padding-right: 1.5rem !important; 2739 | } 2740 | 2741 | .pb-4 { 2742 | padding-bottom: 1.5rem !important; 2743 | } 2744 | 2745 | .pl-4 { 2746 | padding-left: 1.5rem !important; 2747 | } 2748 | 2749 | .px-4 { 2750 | padding-right: 1.5rem !important; 2751 | padding-left: 1.5rem !important; 2752 | } 2753 | 2754 | .py-4 { 2755 | padding-top: 1.5rem !important; 2756 | padding-bottom: 1.5rem !important; 2757 | } 2758 | 2759 | .p-5 { 2760 | padding: 3rem !important; 2761 | } 2762 | 2763 | .pt-5 { 2764 | padding-top: 3rem !important; 2765 | } 2766 | 2767 | .pr-5 { 2768 | padding-right: 3rem !important; 2769 | } 2770 | 2771 | .pb-5 { 2772 | padding-bottom: 3rem !important; 2773 | } 2774 | 2775 | .pl-5 { 2776 | padding-left: 3rem !important; 2777 | } 2778 | 2779 | .px-5 { 2780 | padding-right: 3rem !important; 2781 | padding-left: 3rem !important; 2782 | } 2783 | 2784 | .py-5 { 2785 | padding-top: 3rem !important; 2786 | padding-bottom: 3rem !important; 2787 | } 2788 | 2789 | .m-auto { 2790 | margin: auto !important; 2791 | } 2792 | 2793 | .mt-auto { 2794 | margin-top: auto !important; 2795 | } 2796 | 2797 | .mr-auto { 2798 | margin-right: auto !important; 2799 | } 2800 | 2801 | .mb-auto { 2802 | margin-bottom: auto !important; 2803 | } 2804 | 2805 | .ml-auto { 2806 | margin-left: auto !important; 2807 | } 2808 | 2809 | .mx-auto { 2810 | margin-right: auto !important; 2811 | margin-left: auto !important; 2812 | } 2813 | 2814 | .my-auto { 2815 | margin-top: auto !important; 2816 | margin-bottom: auto !important; 2817 | } 2818 | 2819 | @media (min-width: 576px) { 2820 | .m-sm-0 { 2821 | margin: 0 !important; 2822 | } 2823 | .mt-sm-0 { 2824 | margin-top: 0 !important; 2825 | } 2826 | .mr-sm-0 { 2827 | margin-right: 0 !important; 2828 | } 2829 | .mb-sm-0 { 2830 | margin-bottom: 0 !important; 2831 | } 2832 | .ml-sm-0 { 2833 | margin-left: 0 !important; 2834 | } 2835 | .mx-sm-0 { 2836 | margin-right: 0 !important; 2837 | margin-left: 0 !important; 2838 | } 2839 | .my-sm-0 { 2840 | margin-top: 0 !important; 2841 | margin-bottom: 0 !important; 2842 | } 2843 | .m-sm-1 { 2844 | margin: 0.25rem !important; 2845 | } 2846 | .mt-sm-1 { 2847 | margin-top: 0.25rem !important; 2848 | } 2849 | .mr-sm-1 { 2850 | margin-right: 0.25rem !important; 2851 | } 2852 | .mb-sm-1 { 2853 | margin-bottom: 0.25rem !important; 2854 | } 2855 | .ml-sm-1 { 2856 | margin-left: 0.25rem !important; 2857 | } 2858 | .mx-sm-1 { 2859 | margin-right: 0.25rem !important; 2860 | margin-left: 0.25rem !important; 2861 | } 2862 | .my-sm-1 { 2863 | margin-top: 0.25rem !important; 2864 | margin-bottom: 0.25rem !important; 2865 | } 2866 | .m-sm-2 { 2867 | margin: 0.5rem !important; 2868 | } 2869 | .mt-sm-2 { 2870 | margin-top: 0.5rem !important; 2871 | } 2872 | .mr-sm-2 { 2873 | margin-right: 0.5rem !important; 2874 | } 2875 | .mb-sm-2 { 2876 | margin-bottom: 0.5rem !important; 2877 | } 2878 | .ml-sm-2 { 2879 | margin-left: 0.5rem !important; 2880 | } 2881 | .mx-sm-2 { 2882 | margin-right: 0.5rem !important; 2883 | margin-left: 0.5rem !important; 2884 | } 2885 | .my-sm-2 { 2886 | margin-top: 0.5rem !important; 2887 | margin-bottom: 0.5rem !important; 2888 | } 2889 | .m-sm-3 { 2890 | margin: 1rem !important; 2891 | } 2892 | .mt-sm-3 { 2893 | margin-top: 1rem !important; 2894 | } 2895 | .mr-sm-3 { 2896 | margin-right: 1rem !important; 2897 | } 2898 | .mb-sm-3 { 2899 | margin-bottom: 1rem !important; 2900 | } 2901 | .ml-sm-3 { 2902 | margin-left: 1rem !important; 2903 | } 2904 | .mx-sm-3 { 2905 | margin-right: 1rem !important; 2906 | margin-left: 1rem !important; 2907 | } 2908 | .my-sm-3 { 2909 | margin-top: 1rem !important; 2910 | margin-bottom: 1rem !important; 2911 | } 2912 | .m-sm-4 { 2913 | margin: 1.5rem !important; 2914 | } 2915 | .mt-sm-4 { 2916 | margin-top: 1.5rem !important; 2917 | } 2918 | .mr-sm-4 { 2919 | margin-right: 1.5rem !important; 2920 | } 2921 | .mb-sm-4 { 2922 | margin-bottom: 1.5rem !important; 2923 | } 2924 | .ml-sm-4 { 2925 | margin-left: 1.5rem !important; 2926 | } 2927 | .mx-sm-4 { 2928 | margin-right: 1.5rem !important; 2929 | margin-left: 1.5rem !important; 2930 | } 2931 | .my-sm-4 { 2932 | margin-top: 1.5rem !important; 2933 | margin-bottom: 1.5rem !important; 2934 | } 2935 | .m-sm-5 { 2936 | margin: 3rem !important; 2937 | } 2938 | .mt-sm-5 { 2939 | margin-top: 3rem !important; 2940 | } 2941 | .mr-sm-5 { 2942 | margin-right: 3rem !important; 2943 | } 2944 | .mb-sm-5 { 2945 | margin-bottom: 3rem !important; 2946 | } 2947 | .ml-sm-5 { 2948 | margin-left: 3rem !important; 2949 | } 2950 | .mx-sm-5 { 2951 | margin-right: 3rem !important; 2952 | margin-left: 3rem !important; 2953 | } 2954 | .my-sm-5 { 2955 | margin-top: 3rem !important; 2956 | margin-bottom: 3rem !important; 2957 | } 2958 | .p-sm-0 { 2959 | padding: 0 !important; 2960 | } 2961 | .pt-sm-0 { 2962 | padding-top: 0 !important; 2963 | } 2964 | .pr-sm-0 { 2965 | padding-right: 0 !important; 2966 | } 2967 | .pb-sm-0 { 2968 | padding-bottom: 0 !important; 2969 | } 2970 | .pl-sm-0 { 2971 | padding-left: 0 !important; 2972 | } 2973 | .px-sm-0 { 2974 | padding-right: 0 !important; 2975 | padding-left: 0 !important; 2976 | } 2977 | .py-sm-0 { 2978 | padding-top: 0 !important; 2979 | padding-bottom: 0 !important; 2980 | } 2981 | .p-sm-1 { 2982 | padding: 0.25rem !important; 2983 | } 2984 | .pt-sm-1 { 2985 | padding-top: 0.25rem !important; 2986 | } 2987 | .pr-sm-1 { 2988 | padding-right: 0.25rem !important; 2989 | } 2990 | .pb-sm-1 { 2991 | padding-bottom: 0.25rem !important; 2992 | } 2993 | .pl-sm-1 { 2994 | padding-left: 0.25rem !important; 2995 | } 2996 | .px-sm-1 { 2997 | padding-right: 0.25rem !important; 2998 | padding-left: 0.25rem !important; 2999 | } 3000 | .py-sm-1 { 3001 | padding-top: 0.25rem !important; 3002 | padding-bottom: 0.25rem !important; 3003 | } 3004 | .p-sm-2 { 3005 | padding: 0.5rem !important; 3006 | } 3007 | .pt-sm-2 { 3008 | padding-top: 0.5rem !important; 3009 | } 3010 | .pr-sm-2 { 3011 | padding-right: 0.5rem !important; 3012 | } 3013 | .pb-sm-2 { 3014 | padding-bottom: 0.5rem !important; 3015 | } 3016 | .pl-sm-2 { 3017 | padding-left: 0.5rem !important; 3018 | } 3019 | .px-sm-2 { 3020 | padding-right: 0.5rem !important; 3021 | padding-left: 0.5rem !important; 3022 | } 3023 | .py-sm-2 { 3024 | padding-top: 0.5rem !important; 3025 | padding-bottom: 0.5rem !important; 3026 | } 3027 | .p-sm-3 { 3028 | padding: 1rem !important; 3029 | } 3030 | .pt-sm-3 { 3031 | padding-top: 1rem !important; 3032 | } 3033 | .pr-sm-3 { 3034 | padding-right: 1rem !important; 3035 | } 3036 | .pb-sm-3 { 3037 | padding-bottom: 1rem !important; 3038 | } 3039 | .pl-sm-3 { 3040 | padding-left: 1rem !important; 3041 | } 3042 | .px-sm-3 { 3043 | padding-right: 1rem !important; 3044 | padding-left: 1rem !important; 3045 | } 3046 | .py-sm-3 { 3047 | padding-top: 1rem !important; 3048 | padding-bottom: 1rem !important; 3049 | } 3050 | .p-sm-4 { 3051 | padding: 1.5rem !important; 3052 | } 3053 | .pt-sm-4 { 3054 | padding-top: 1.5rem !important; 3055 | } 3056 | .pr-sm-4 { 3057 | padding-right: 1.5rem !important; 3058 | } 3059 | .pb-sm-4 { 3060 | padding-bottom: 1.5rem !important; 3061 | } 3062 | .pl-sm-4 { 3063 | padding-left: 1.5rem !important; 3064 | } 3065 | .px-sm-4 { 3066 | padding-right: 1.5rem !important; 3067 | padding-left: 1.5rem !important; 3068 | } 3069 | .py-sm-4 { 3070 | padding-top: 1.5rem !important; 3071 | padding-bottom: 1.5rem !important; 3072 | } 3073 | .p-sm-5 { 3074 | padding: 3rem !important; 3075 | } 3076 | .pt-sm-5 { 3077 | padding-top: 3rem !important; 3078 | } 3079 | .pr-sm-5 { 3080 | padding-right: 3rem !important; 3081 | } 3082 | .pb-sm-5 { 3083 | padding-bottom: 3rem !important; 3084 | } 3085 | .pl-sm-5 { 3086 | padding-left: 3rem !important; 3087 | } 3088 | .px-sm-5 { 3089 | padding-right: 3rem !important; 3090 | padding-left: 3rem !important; 3091 | } 3092 | .py-sm-5 { 3093 | padding-top: 3rem !important; 3094 | padding-bottom: 3rem !important; 3095 | } 3096 | .m-sm-auto { 3097 | margin: auto !important; 3098 | } 3099 | .mt-sm-auto { 3100 | margin-top: auto !important; 3101 | } 3102 | .mr-sm-auto { 3103 | margin-right: auto !important; 3104 | } 3105 | .mb-sm-auto { 3106 | margin-bottom: auto !important; 3107 | } 3108 | .ml-sm-auto { 3109 | margin-left: auto !important; 3110 | } 3111 | .mx-sm-auto { 3112 | margin-right: auto !important; 3113 | margin-left: auto !important; 3114 | } 3115 | .my-sm-auto { 3116 | margin-top: auto !important; 3117 | margin-bottom: auto !important; 3118 | } 3119 | } 3120 | 3121 | @media (min-width: 768px) { 3122 | .m-md-0 { 3123 | margin: 0 !important; 3124 | } 3125 | .mt-md-0 { 3126 | margin-top: 0 !important; 3127 | } 3128 | .mr-md-0 { 3129 | margin-right: 0 !important; 3130 | } 3131 | .mb-md-0 { 3132 | margin-bottom: 0 !important; 3133 | } 3134 | .ml-md-0 { 3135 | margin-left: 0 !important; 3136 | } 3137 | .mx-md-0 { 3138 | margin-right: 0 !important; 3139 | margin-left: 0 !important; 3140 | } 3141 | .my-md-0 { 3142 | margin-top: 0 !important; 3143 | margin-bottom: 0 !important; 3144 | } 3145 | .m-md-1 { 3146 | margin: 0.25rem !important; 3147 | } 3148 | .mt-md-1 { 3149 | margin-top: 0.25rem !important; 3150 | } 3151 | .mr-md-1 { 3152 | margin-right: 0.25rem !important; 3153 | } 3154 | .mb-md-1 { 3155 | margin-bottom: 0.25rem !important; 3156 | } 3157 | .ml-md-1 { 3158 | margin-left: 0.25rem !important; 3159 | } 3160 | .mx-md-1 { 3161 | margin-right: 0.25rem !important; 3162 | margin-left: 0.25rem !important; 3163 | } 3164 | .my-md-1 { 3165 | margin-top: 0.25rem !important; 3166 | margin-bottom: 0.25rem !important; 3167 | } 3168 | .m-md-2 { 3169 | margin: 0.5rem !important; 3170 | } 3171 | .mt-md-2 { 3172 | margin-top: 0.5rem !important; 3173 | } 3174 | .mr-md-2 { 3175 | margin-right: 0.5rem !important; 3176 | } 3177 | .mb-md-2 { 3178 | margin-bottom: 0.5rem !important; 3179 | } 3180 | .ml-md-2 { 3181 | margin-left: 0.5rem !important; 3182 | } 3183 | .mx-md-2 { 3184 | margin-right: 0.5rem !important; 3185 | margin-left: 0.5rem !important; 3186 | } 3187 | .my-md-2 { 3188 | margin-top: 0.5rem !important; 3189 | margin-bottom: 0.5rem !important; 3190 | } 3191 | .m-md-3 { 3192 | margin: 1rem !important; 3193 | } 3194 | .mt-md-3 { 3195 | margin-top: 1rem !important; 3196 | } 3197 | .mr-md-3 { 3198 | margin-right: 1rem !important; 3199 | } 3200 | .mb-md-3 { 3201 | margin-bottom: 1rem !important; 3202 | } 3203 | .ml-md-3 { 3204 | margin-left: 1rem !important; 3205 | } 3206 | .mx-md-3 { 3207 | margin-right: 1rem !important; 3208 | margin-left: 1rem !important; 3209 | } 3210 | .my-md-3 { 3211 | margin-top: 1rem !important; 3212 | margin-bottom: 1rem !important; 3213 | } 3214 | .m-md-4 { 3215 | margin: 1.5rem !important; 3216 | } 3217 | .mt-md-4 { 3218 | margin-top: 1.5rem !important; 3219 | } 3220 | .mr-md-4 { 3221 | margin-right: 1.5rem !important; 3222 | } 3223 | .mb-md-4 { 3224 | margin-bottom: 1.5rem !important; 3225 | } 3226 | .ml-md-4 { 3227 | margin-left: 1.5rem !important; 3228 | } 3229 | .mx-md-4 { 3230 | margin-right: 1.5rem !important; 3231 | margin-left: 1.5rem !important; 3232 | } 3233 | .my-md-4 { 3234 | margin-top: 1.5rem !important; 3235 | margin-bottom: 1.5rem !important; 3236 | } 3237 | .m-md-5 { 3238 | margin: 3rem !important; 3239 | } 3240 | .mt-md-5 { 3241 | margin-top: 3rem !important; 3242 | } 3243 | .mr-md-5 { 3244 | margin-right: 3rem !important; 3245 | } 3246 | .mb-md-5 { 3247 | margin-bottom: 3rem !important; 3248 | } 3249 | .ml-md-5 { 3250 | margin-left: 3rem !important; 3251 | } 3252 | .mx-md-5 { 3253 | margin-right: 3rem !important; 3254 | margin-left: 3rem !important; 3255 | } 3256 | .my-md-5 { 3257 | margin-top: 3rem !important; 3258 | margin-bottom: 3rem !important; 3259 | } 3260 | .p-md-0 { 3261 | padding: 0 !important; 3262 | } 3263 | .pt-md-0 { 3264 | padding-top: 0 !important; 3265 | } 3266 | .pr-md-0 { 3267 | padding-right: 0 !important; 3268 | } 3269 | .pb-md-0 { 3270 | padding-bottom: 0 !important; 3271 | } 3272 | .pl-md-0 { 3273 | padding-left: 0 !important; 3274 | } 3275 | .px-md-0 { 3276 | padding-right: 0 !important; 3277 | padding-left: 0 !important; 3278 | } 3279 | .py-md-0 { 3280 | padding-top: 0 !important; 3281 | padding-bottom: 0 !important; 3282 | } 3283 | .p-md-1 { 3284 | padding: 0.25rem !important; 3285 | } 3286 | .pt-md-1 { 3287 | padding-top: 0.25rem !important; 3288 | } 3289 | .pr-md-1 { 3290 | padding-right: 0.25rem !important; 3291 | } 3292 | .pb-md-1 { 3293 | padding-bottom: 0.25rem !important; 3294 | } 3295 | .pl-md-1 { 3296 | padding-left: 0.25rem !important; 3297 | } 3298 | .px-md-1 { 3299 | padding-right: 0.25rem !important; 3300 | padding-left: 0.25rem !important; 3301 | } 3302 | .py-md-1 { 3303 | padding-top: 0.25rem !important; 3304 | padding-bottom: 0.25rem !important; 3305 | } 3306 | .p-md-2 { 3307 | padding: 0.5rem !important; 3308 | } 3309 | .pt-md-2 { 3310 | padding-top: 0.5rem !important; 3311 | } 3312 | .pr-md-2 { 3313 | padding-right: 0.5rem !important; 3314 | } 3315 | .pb-md-2 { 3316 | padding-bottom: 0.5rem !important; 3317 | } 3318 | .pl-md-2 { 3319 | padding-left: 0.5rem !important; 3320 | } 3321 | .px-md-2 { 3322 | padding-right: 0.5rem !important; 3323 | padding-left: 0.5rem !important; 3324 | } 3325 | .py-md-2 { 3326 | padding-top: 0.5rem !important; 3327 | padding-bottom: 0.5rem !important; 3328 | } 3329 | .p-md-3 { 3330 | padding: 1rem !important; 3331 | } 3332 | .pt-md-3 { 3333 | padding-top: 1rem !important; 3334 | } 3335 | .pr-md-3 { 3336 | padding-right: 1rem !important; 3337 | } 3338 | .pb-md-3 { 3339 | padding-bottom: 1rem !important; 3340 | } 3341 | .pl-md-3 { 3342 | padding-left: 1rem !important; 3343 | } 3344 | .px-md-3 { 3345 | padding-right: 1rem !important; 3346 | padding-left: 1rem !important; 3347 | } 3348 | .py-md-3 { 3349 | padding-top: 1rem !important; 3350 | padding-bottom: 1rem !important; 3351 | } 3352 | .p-md-4 { 3353 | padding: 1.5rem !important; 3354 | } 3355 | .pt-md-4 { 3356 | padding-top: 1.5rem !important; 3357 | } 3358 | .pr-md-4 { 3359 | padding-right: 1.5rem !important; 3360 | } 3361 | .pb-md-4 { 3362 | padding-bottom: 1.5rem !important; 3363 | } 3364 | .pl-md-4 { 3365 | padding-left: 1.5rem !important; 3366 | } 3367 | .px-md-4 { 3368 | padding-right: 1.5rem !important; 3369 | padding-left: 1.5rem !important; 3370 | } 3371 | .py-md-4 { 3372 | padding-top: 1.5rem !important; 3373 | padding-bottom: 1.5rem !important; 3374 | } 3375 | .p-md-5 { 3376 | padding: 3rem !important; 3377 | } 3378 | .pt-md-5 { 3379 | padding-top: 3rem !important; 3380 | } 3381 | .pr-md-5 { 3382 | padding-right: 3rem !important; 3383 | } 3384 | .pb-md-5 { 3385 | padding-bottom: 3rem !important; 3386 | } 3387 | .pl-md-5 { 3388 | padding-left: 3rem !important; 3389 | } 3390 | .px-md-5 { 3391 | padding-right: 3rem !important; 3392 | padding-left: 3rem !important; 3393 | } 3394 | .py-md-5 { 3395 | padding-top: 3rem !important; 3396 | padding-bottom: 3rem !important; 3397 | } 3398 | .m-md-auto { 3399 | margin: auto !important; 3400 | } 3401 | .mt-md-auto { 3402 | margin-top: auto !important; 3403 | } 3404 | .mr-md-auto { 3405 | margin-right: auto !important; 3406 | } 3407 | .mb-md-auto { 3408 | margin-bottom: auto !important; 3409 | } 3410 | .ml-md-auto { 3411 | margin-left: auto !important; 3412 | } 3413 | .mx-md-auto { 3414 | margin-right: auto !important; 3415 | margin-left: auto !important; 3416 | } 3417 | .my-md-auto { 3418 | margin-top: auto !important; 3419 | margin-bottom: auto !important; 3420 | } 3421 | } 3422 | 3423 | @media (min-width: 992px) { 3424 | .m-lg-0 { 3425 | margin: 0 !important; 3426 | } 3427 | .mt-lg-0 { 3428 | margin-top: 0 !important; 3429 | } 3430 | .mr-lg-0 { 3431 | margin-right: 0 !important; 3432 | } 3433 | .mb-lg-0 { 3434 | margin-bottom: 0 !important; 3435 | } 3436 | .ml-lg-0 { 3437 | margin-left: 0 !important; 3438 | } 3439 | .mx-lg-0 { 3440 | margin-right: 0 !important; 3441 | margin-left: 0 !important; 3442 | } 3443 | .my-lg-0 { 3444 | margin-top: 0 !important; 3445 | margin-bottom: 0 !important; 3446 | } 3447 | .m-lg-1 { 3448 | margin: 0.25rem !important; 3449 | } 3450 | .mt-lg-1 { 3451 | margin-top: 0.25rem !important; 3452 | } 3453 | .mr-lg-1 { 3454 | margin-right: 0.25rem !important; 3455 | } 3456 | .mb-lg-1 { 3457 | margin-bottom: 0.25rem !important; 3458 | } 3459 | .ml-lg-1 { 3460 | margin-left: 0.25rem !important; 3461 | } 3462 | .mx-lg-1 { 3463 | margin-right: 0.25rem !important; 3464 | margin-left: 0.25rem !important; 3465 | } 3466 | .my-lg-1 { 3467 | margin-top: 0.25rem !important; 3468 | margin-bottom: 0.25rem !important; 3469 | } 3470 | .m-lg-2 { 3471 | margin: 0.5rem !important; 3472 | } 3473 | .mt-lg-2 { 3474 | margin-top: 0.5rem !important; 3475 | } 3476 | .mr-lg-2 { 3477 | margin-right: 0.5rem !important; 3478 | } 3479 | .mb-lg-2 { 3480 | margin-bottom: 0.5rem !important; 3481 | } 3482 | .ml-lg-2 { 3483 | margin-left: 0.5rem !important; 3484 | } 3485 | .mx-lg-2 { 3486 | margin-right: 0.5rem !important; 3487 | margin-left: 0.5rem !important; 3488 | } 3489 | .my-lg-2 { 3490 | margin-top: 0.5rem !important; 3491 | margin-bottom: 0.5rem !important; 3492 | } 3493 | .m-lg-3 { 3494 | margin: 1rem !important; 3495 | } 3496 | .mt-lg-3 { 3497 | margin-top: 1rem !important; 3498 | } 3499 | .mr-lg-3 { 3500 | margin-right: 1rem !important; 3501 | } 3502 | .mb-lg-3 { 3503 | margin-bottom: 1rem !important; 3504 | } 3505 | .ml-lg-3 { 3506 | margin-left: 1rem !important; 3507 | } 3508 | .mx-lg-3 { 3509 | margin-right: 1rem !important; 3510 | margin-left: 1rem !important; 3511 | } 3512 | .my-lg-3 { 3513 | margin-top: 1rem !important; 3514 | margin-bottom: 1rem !important; 3515 | } 3516 | .m-lg-4 { 3517 | margin: 1.5rem !important; 3518 | } 3519 | .mt-lg-4 { 3520 | margin-top: 1.5rem !important; 3521 | } 3522 | .mr-lg-4 { 3523 | margin-right: 1.5rem !important; 3524 | } 3525 | .mb-lg-4 { 3526 | margin-bottom: 1.5rem !important; 3527 | } 3528 | .ml-lg-4 { 3529 | margin-left: 1.5rem !important; 3530 | } 3531 | .mx-lg-4 { 3532 | margin-right: 1.5rem !important; 3533 | margin-left: 1.5rem !important; 3534 | } 3535 | .my-lg-4 { 3536 | margin-top: 1.5rem !important; 3537 | margin-bottom: 1.5rem !important; 3538 | } 3539 | .m-lg-5 { 3540 | margin: 3rem !important; 3541 | } 3542 | .mt-lg-5 { 3543 | margin-top: 3rem !important; 3544 | } 3545 | .mr-lg-5 { 3546 | margin-right: 3rem !important; 3547 | } 3548 | .mb-lg-5 { 3549 | margin-bottom: 3rem !important; 3550 | } 3551 | .ml-lg-5 { 3552 | margin-left: 3rem !important; 3553 | } 3554 | .mx-lg-5 { 3555 | margin-right: 3rem !important; 3556 | margin-left: 3rem !important; 3557 | } 3558 | .my-lg-5 { 3559 | margin-top: 3rem !important; 3560 | margin-bottom: 3rem !important; 3561 | } 3562 | .p-lg-0 { 3563 | padding: 0 !important; 3564 | } 3565 | .pt-lg-0 { 3566 | padding-top: 0 !important; 3567 | } 3568 | .pr-lg-0 { 3569 | padding-right: 0 !important; 3570 | } 3571 | .pb-lg-0 { 3572 | padding-bottom: 0 !important; 3573 | } 3574 | .pl-lg-0 { 3575 | padding-left: 0 !important; 3576 | } 3577 | .px-lg-0 { 3578 | padding-right: 0 !important; 3579 | padding-left: 0 !important; 3580 | } 3581 | .py-lg-0 { 3582 | padding-top: 0 !important; 3583 | padding-bottom: 0 !important; 3584 | } 3585 | .p-lg-1 { 3586 | padding: 0.25rem !important; 3587 | } 3588 | .pt-lg-1 { 3589 | padding-top: 0.25rem !important; 3590 | } 3591 | .pr-lg-1 { 3592 | padding-right: 0.25rem !important; 3593 | } 3594 | .pb-lg-1 { 3595 | padding-bottom: 0.25rem !important; 3596 | } 3597 | .pl-lg-1 { 3598 | padding-left: 0.25rem !important; 3599 | } 3600 | .px-lg-1 { 3601 | padding-right: 0.25rem !important; 3602 | padding-left: 0.25rem !important; 3603 | } 3604 | .py-lg-1 { 3605 | padding-top: 0.25rem !important; 3606 | padding-bottom: 0.25rem !important; 3607 | } 3608 | .p-lg-2 { 3609 | padding: 0.5rem !important; 3610 | } 3611 | .pt-lg-2 { 3612 | padding-top: 0.5rem !important; 3613 | } 3614 | .pr-lg-2 { 3615 | padding-right: 0.5rem !important; 3616 | } 3617 | .pb-lg-2 { 3618 | padding-bottom: 0.5rem !important; 3619 | } 3620 | .pl-lg-2 { 3621 | padding-left: 0.5rem !important; 3622 | } 3623 | .px-lg-2 { 3624 | padding-right: 0.5rem !important; 3625 | padding-left: 0.5rem !important; 3626 | } 3627 | .py-lg-2 { 3628 | padding-top: 0.5rem !important; 3629 | padding-bottom: 0.5rem !important; 3630 | } 3631 | .p-lg-3 { 3632 | padding: 1rem !important; 3633 | } 3634 | .pt-lg-3 { 3635 | padding-top: 1rem !important; 3636 | } 3637 | .pr-lg-3 { 3638 | padding-right: 1rem !important; 3639 | } 3640 | .pb-lg-3 { 3641 | padding-bottom: 1rem !important; 3642 | } 3643 | .pl-lg-3 { 3644 | padding-left: 1rem !important; 3645 | } 3646 | .px-lg-3 { 3647 | padding-right: 1rem !important; 3648 | padding-left: 1rem !important; 3649 | } 3650 | .py-lg-3 { 3651 | padding-top: 1rem !important; 3652 | padding-bottom: 1rem !important; 3653 | } 3654 | .p-lg-4 { 3655 | padding: 1.5rem !important; 3656 | } 3657 | .pt-lg-4 { 3658 | padding-top: 1.5rem !important; 3659 | } 3660 | .pr-lg-4 { 3661 | padding-right: 1.5rem !important; 3662 | } 3663 | .pb-lg-4 { 3664 | padding-bottom: 1.5rem !important; 3665 | } 3666 | .pl-lg-4 { 3667 | padding-left: 1.5rem !important; 3668 | } 3669 | .px-lg-4 { 3670 | padding-right: 1.5rem !important; 3671 | padding-left: 1.5rem !important; 3672 | } 3673 | .py-lg-4 { 3674 | padding-top: 1.5rem !important; 3675 | padding-bottom: 1.5rem !important; 3676 | } 3677 | .p-lg-5 { 3678 | padding: 3rem !important; 3679 | } 3680 | .pt-lg-5 { 3681 | padding-top: 3rem !important; 3682 | } 3683 | .pr-lg-5 { 3684 | padding-right: 3rem !important; 3685 | } 3686 | .pb-lg-5 { 3687 | padding-bottom: 3rem !important; 3688 | } 3689 | .pl-lg-5 { 3690 | padding-left: 3rem !important; 3691 | } 3692 | .px-lg-5 { 3693 | padding-right: 3rem !important; 3694 | padding-left: 3rem !important; 3695 | } 3696 | .py-lg-5 { 3697 | padding-top: 3rem !important; 3698 | padding-bottom: 3rem !important; 3699 | } 3700 | .m-lg-auto { 3701 | margin: auto !important; 3702 | } 3703 | .mt-lg-auto { 3704 | margin-top: auto !important; 3705 | } 3706 | .mr-lg-auto { 3707 | margin-right: auto !important; 3708 | } 3709 | .mb-lg-auto { 3710 | margin-bottom: auto !important; 3711 | } 3712 | .ml-lg-auto { 3713 | margin-left: auto !important; 3714 | } 3715 | .mx-lg-auto { 3716 | margin-right: auto !important; 3717 | margin-left: auto !important; 3718 | } 3719 | .my-lg-auto { 3720 | margin-top: auto !important; 3721 | margin-bottom: auto !important; 3722 | } 3723 | } 3724 | 3725 | @media (min-width: 1200px) { 3726 | .m-xl-0 { 3727 | margin: 0 !important; 3728 | } 3729 | .mt-xl-0 { 3730 | margin-top: 0 !important; 3731 | } 3732 | .mr-xl-0 { 3733 | margin-right: 0 !important; 3734 | } 3735 | .mb-xl-0 { 3736 | margin-bottom: 0 !important; 3737 | } 3738 | .ml-xl-0 { 3739 | margin-left: 0 !important; 3740 | } 3741 | .mx-xl-0 { 3742 | margin-right: 0 !important; 3743 | margin-left: 0 !important; 3744 | } 3745 | .my-xl-0 { 3746 | margin-top: 0 !important; 3747 | margin-bottom: 0 !important; 3748 | } 3749 | .m-xl-1 { 3750 | margin: 0.25rem !important; 3751 | } 3752 | .mt-xl-1 { 3753 | margin-top: 0.25rem !important; 3754 | } 3755 | .mr-xl-1 { 3756 | margin-right: 0.25rem !important; 3757 | } 3758 | .mb-xl-1 { 3759 | margin-bottom: 0.25rem !important; 3760 | } 3761 | .ml-xl-1 { 3762 | margin-left: 0.25rem !important; 3763 | } 3764 | .mx-xl-1 { 3765 | margin-right: 0.25rem !important; 3766 | margin-left: 0.25rem !important; 3767 | } 3768 | .my-xl-1 { 3769 | margin-top: 0.25rem !important; 3770 | margin-bottom: 0.25rem !important; 3771 | } 3772 | .m-xl-2 { 3773 | margin: 0.5rem !important; 3774 | } 3775 | .mt-xl-2 { 3776 | margin-top: 0.5rem !important; 3777 | } 3778 | .mr-xl-2 { 3779 | margin-right: 0.5rem !important; 3780 | } 3781 | .mb-xl-2 { 3782 | margin-bottom: 0.5rem !important; 3783 | } 3784 | .ml-xl-2 { 3785 | margin-left: 0.5rem !important; 3786 | } 3787 | .mx-xl-2 { 3788 | margin-right: 0.5rem !important; 3789 | margin-left: 0.5rem !important; 3790 | } 3791 | .my-xl-2 { 3792 | margin-top: 0.5rem !important; 3793 | margin-bottom: 0.5rem !important; 3794 | } 3795 | .m-xl-3 { 3796 | margin: 1rem !important; 3797 | } 3798 | .mt-xl-3 { 3799 | margin-top: 1rem !important; 3800 | } 3801 | .mr-xl-3 { 3802 | margin-right: 1rem !important; 3803 | } 3804 | .mb-xl-3 { 3805 | margin-bottom: 1rem !important; 3806 | } 3807 | .ml-xl-3 { 3808 | margin-left: 1rem !important; 3809 | } 3810 | .mx-xl-3 { 3811 | margin-right: 1rem !important; 3812 | margin-left: 1rem !important; 3813 | } 3814 | .my-xl-3 { 3815 | margin-top: 1rem !important; 3816 | margin-bottom: 1rem !important; 3817 | } 3818 | .m-xl-4 { 3819 | margin: 1.5rem !important; 3820 | } 3821 | .mt-xl-4 { 3822 | margin-top: 1.5rem !important; 3823 | } 3824 | .mr-xl-4 { 3825 | margin-right: 1.5rem !important; 3826 | } 3827 | .mb-xl-4 { 3828 | margin-bottom: 1.5rem !important; 3829 | } 3830 | .ml-xl-4 { 3831 | margin-left: 1.5rem !important; 3832 | } 3833 | .mx-xl-4 { 3834 | margin-right: 1.5rem !important; 3835 | margin-left: 1.5rem !important; 3836 | } 3837 | .my-xl-4 { 3838 | margin-top: 1.5rem !important; 3839 | margin-bottom: 1.5rem !important; 3840 | } 3841 | .m-xl-5 { 3842 | margin: 3rem !important; 3843 | } 3844 | .mt-xl-5 { 3845 | margin-top: 3rem !important; 3846 | } 3847 | .mr-xl-5 { 3848 | margin-right: 3rem !important; 3849 | } 3850 | .mb-xl-5 { 3851 | margin-bottom: 3rem !important; 3852 | } 3853 | .ml-xl-5 { 3854 | margin-left: 3rem !important; 3855 | } 3856 | .mx-xl-5 { 3857 | margin-right: 3rem !important; 3858 | margin-left: 3rem !important; 3859 | } 3860 | .my-xl-5 { 3861 | margin-top: 3rem !important; 3862 | margin-bottom: 3rem !important; 3863 | } 3864 | .p-xl-0 { 3865 | padding: 0 !important; 3866 | } 3867 | .pt-xl-0 { 3868 | padding-top: 0 !important; 3869 | } 3870 | .pr-xl-0 { 3871 | padding-right: 0 !important; 3872 | } 3873 | .pb-xl-0 { 3874 | padding-bottom: 0 !important; 3875 | } 3876 | .pl-xl-0 { 3877 | padding-left: 0 !important; 3878 | } 3879 | .px-xl-0 { 3880 | padding-right: 0 !important; 3881 | padding-left: 0 !important; 3882 | } 3883 | .py-xl-0 { 3884 | padding-top: 0 !important; 3885 | padding-bottom: 0 !important; 3886 | } 3887 | .p-xl-1 { 3888 | padding: 0.25rem !important; 3889 | } 3890 | .pt-xl-1 { 3891 | padding-top: 0.25rem !important; 3892 | } 3893 | .pr-xl-1 { 3894 | padding-right: 0.25rem !important; 3895 | } 3896 | .pb-xl-1 { 3897 | padding-bottom: 0.25rem !important; 3898 | } 3899 | .pl-xl-1 { 3900 | padding-left: 0.25rem !important; 3901 | } 3902 | .px-xl-1 { 3903 | padding-right: 0.25rem !important; 3904 | padding-left: 0.25rem !important; 3905 | } 3906 | .py-xl-1 { 3907 | padding-top: 0.25rem !important; 3908 | padding-bottom: 0.25rem !important; 3909 | } 3910 | .p-xl-2 { 3911 | padding: 0.5rem !important; 3912 | } 3913 | .pt-xl-2 { 3914 | padding-top: 0.5rem !important; 3915 | } 3916 | .pr-xl-2 { 3917 | padding-right: 0.5rem !important; 3918 | } 3919 | .pb-xl-2 { 3920 | padding-bottom: 0.5rem !important; 3921 | } 3922 | .pl-xl-2 { 3923 | padding-left: 0.5rem !important; 3924 | } 3925 | .px-xl-2 { 3926 | padding-right: 0.5rem !important; 3927 | padding-left: 0.5rem !important; 3928 | } 3929 | .py-xl-2 { 3930 | padding-top: 0.5rem !important; 3931 | padding-bottom: 0.5rem !important; 3932 | } 3933 | .p-xl-3 { 3934 | padding: 1rem !important; 3935 | } 3936 | .pt-xl-3 { 3937 | padding-top: 1rem !important; 3938 | } 3939 | .pr-xl-3 { 3940 | padding-right: 1rem !important; 3941 | } 3942 | .pb-xl-3 { 3943 | padding-bottom: 1rem !important; 3944 | } 3945 | .pl-xl-3 { 3946 | padding-left: 1rem !important; 3947 | } 3948 | .px-xl-3 { 3949 | padding-right: 1rem !important; 3950 | padding-left: 1rem !important; 3951 | } 3952 | .py-xl-3 { 3953 | padding-top: 1rem !important; 3954 | padding-bottom: 1rem !important; 3955 | } 3956 | .p-xl-4 { 3957 | padding: 1.5rem !important; 3958 | } 3959 | .pt-xl-4 { 3960 | padding-top: 1.5rem !important; 3961 | } 3962 | .pr-xl-4 { 3963 | padding-right: 1.5rem !important; 3964 | } 3965 | .pb-xl-4 { 3966 | padding-bottom: 1.5rem !important; 3967 | } 3968 | .pl-xl-4 { 3969 | padding-left: 1.5rem !important; 3970 | } 3971 | .px-xl-4 { 3972 | padding-right: 1.5rem !important; 3973 | padding-left: 1.5rem !important; 3974 | } 3975 | .py-xl-4 { 3976 | padding-top: 1.5rem !important; 3977 | padding-bottom: 1.5rem !important; 3978 | } 3979 | .p-xl-5 { 3980 | padding: 3rem !important; 3981 | } 3982 | .pt-xl-5 { 3983 | padding-top: 3rem !important; 3984 | } 3985 | .pr-xl-5 { 3986 | padding-right: 3rem !important; 3987 | } 3988 | .pb-xl-5 { 3989 | padding-bottom: 3rem !important; 3990 | } 3991 | .pl-xl-5 { 3992 | padding-left: 3rem !important; 3993 | } 3994 | .px-xl-5 { 3995 | padding-right: 3rem !important; 3996 | padding-left: 3rem !important; 3997 | } 3998 | .py-xl-5 { 3999 | padding-top: 3rem !important; 4000 | padding-bottom: 3rem !important; 4001 | } 4002 | .m-xl-auto { 4003 | margin: auto !important; 4004 | } 4005 | .mt-xl-auto { 4006 | margin-top: auto !important; 4007 | } 4008 | .mr-xl-auto { 4009 | margin-right: auto !important; 4010 | } 4011 | .mb-xl-auto { 4012 | margin-bottom: auto !important; 4013 | } 4014 | .ml-xl-auto { 4015 | margin-left: auto !important; 4016 | } 4017 | .mx-xl-auto { 4018 | margin-right: auto !important; 4019 | margin-left: auto !important; 4020 | } 4021 | .my-xl-auto { 4022 | margin-top: auto !important; 4023 | margin-bottom: auto !important; 4024 | } 4025 | } 4026 | 4027 | .text-justify { 4028 | text-align: justify !important; 4029 | } 4030 | 4031 | .text-nowrap { 4032 | white-space: nowrap !important; 4033 | } 4034 | 4035 | .text-truncate { 4036 | overflow: hidden; 4037 | text-overflow: ellipsis; 4038 | white-space: nowrap; 4039 | } 4040 | 4041 | .text-left { 4042 | text-align: left !important; 4043 | } 4044 | 4045 | .text-right { 4046 | text-align: right !important; 4047 | } 4048 | 4049 | .text-center { 4050 | text-align: center !important; 4051 | } 4052 | 4053 | @media (min-width: 576px) { 4054 | .text-sm-left { 4055 | text-align: left !important; 4056 | } 4057 | .text-sm-right { 4058 | text-align: right !important; 4059 | } 4060 | .text-sm-center { 4061 | text-align: center !important; 4062 | } 4063 | } 4064 | 4065 | @media (min-width: 768px) { 4066 | .text-md-left { 4067 | text-align: left !important; 4068 | } 4069 | .text-md-right { 4070 | text-align: right !important; 4071 | } 4072 | .text-md-center { 4073 | text-align: center !important; 4074 | } 4075 | } 4076 | 4077 | @media (min-width: 992px) { 4078 | .text-lg-left { 4079 | text-align: left !important; 4080 | } 4081 | .text-lg-right { 4082 | text-align: right !important; 4083 | } 4084 | .text-lg-center { 4085 | text-align: center !important; 4086 | } 4087 | } 4088 | 4089 | @media (min-width: 1200px) { 4090 | .text-xl-left { 4091 | text-align: left !important; 4092 | } 4093 | .text-xl-right { 4094 | text-align: right !important; 4095 | } 4096 | .text-xl-center { 4097 | text-align: center !important; 4098 | } 4099 | } 4100 | 4101 | .text-lowercase { 4102 | text-transform: lowercase !important; 4103 | } 4104 | 4105 | .text-uppercase { 4106 | text-transform: uppercase !important; 4107 | } 4108 | 4109 | .text-capitalize { 4110 | text-transform: capitalize !important; 4111 | } 4112 | 4113 | .font-weight-normal { 4114 | font-weight: normal; 4115 | } 4116 | 4117 | .font-weight-bold { 4118 | font-weight: bold; 4119 | } 4120 | 4121 | .font-italic { 4122 | font-style: italic; 4123 | } 4124 | 4125 | .visible { 4126 | visibility: visible !important; 4127 | } 4128 | 4129 | .invisible { 4130 | visibility: hidden !important; 4131 | } 4132 | --------------------------------------------------------------------------------