This is an automated email from the ASF dual-hosted git repository.

bigbluehat pushed a commit to branch asf-site
in repository 
https://gitbox.apache.org/repos/asf/incubator-annotator-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 7e6fb18  Fix privacy related issues
7e6fb18 is described below

commit 7e6fb18f332dcf4624595e3517aca9a7b8e962e7
Author: PermissionError <[email protected]>
AuthorDate: Wed Nov 16 23:37:47 2022 +1300

    Fix privacy related issues
---
 .eleventy.js                                       |   3 +-
 annotator                                          |   2 +-
 src/_includes/page_footer.hbs                      |   2 +-
 src/_layouts/default.hbs                           |   4 +-
 src/css/prism-vs.css                               | 168 ++++++++++
 src/css/semantic.min.css                           | 372 +++++++++++++++++++++
 .../themes/default/assets/fonts/brand-icons.woff2  | Bin 0 -> 54488 bytes
 src/css/themes/default/assets/fonts/icons.woff2    | Bin 0 -> 40148 bytes
 8 files changed, 546 insertions(+), 5 deletions(-)

diff --git a/.eleventy.js b/.eleventy.js
index 102a06a..eb2b3ae 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -17,7 +17,8 @@ module.exports = function(eleventyConfig) {
     'src/favicon.ico': 'favicon.ico',
     'src/index.js': 'index.js',
     'src/images/': 'images/',
-    'src/site.webmanifest': 'site.webmanifest'
+    'src/site.webmanifest': 'site.webmanifest',
+    'src/css': 'css/'
   });
 
   eleventyConfig.addShortcode('eq', function(a, b) { return a === b });
diff --git a/annotator b/annotator
index 087776e..168c8a3 160000
--- a/annotator
+++ b/annotator
@@ -1 +1 @@
-Subproject commit 087776e80657092d6c9c7e31ff2bd2844ce53e3a
+Subproject commit 168c8a33a5174e284fa2b56f1f6e62098e3a484f
diff --git a/src/_includes/page_footer.hbs b/src/_includes/page_footer.hbs
index 5a256b3..d73fb98 100644
--- a/src/_includes/page_footer.hbs
+++ b/src/_includes/page_footer.hbs
@@ -13,7 +13,7 @@
               <em>Copyright © 2016-2018 The Apache Software Foundation, 
Licensed under
               the <a href="https://www.apache.org/licenses/LICENSE-2.0"; 
rel="license external">Apache License, Version 2.0</a>.
               |
-              <a rel="external" 
href="https://www.apache.org/foundation/policies/privacy";>Privacy Policy</a>
+              <a rel="external" 
href="https://www.apache.org/foundation/policies/privacy.html";>Privacy 
Policy</a>
               </em>
             </p>
           </div>
diff --git a/src/_layouts/default.hbs b/src/_layouts/default.hbs
index 0ce12fe..6518580 100644
--- a/src/_layouts/default.hbs
+++ b/src/_layouts/default.hbs
@@ -33,8 +33,8 @@
       --}}
     {{/extra_head_stuff}}
 
-    <link rel="stylesheet" href="//semantic-ui.com/dist/semantic.min.css" />
-    <link rel="stylesheet" 
href="//cdn.jsdelivr.net/npm/prism-themes/themes/prism-vs.css" />
+    <link rel="stylesheet" href="/css/semantic.min.css" />
+    <link rel="stylesheet" href="/css/prism-vs.css" />
     <style>
       html {
         font-size: 17px;
diff --git a/src/css/prism-vs.css b/src/css/prism-vs.css
new file mode 100644
index 0000000..54377df
--- /dev/null
+++ b/src/css/prism-vs.css
@@ -0,0 +1,168 @@
+/**
+ * VS theme by Andrew Lock (https://andrewlock.net)
+ * Inspired by Visual Studio syntax coloring
+ */
+
+code[class*="language-"],
+pre[class*="language-"] {
+       color: #393A34;
+       font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", 
Courier, monospace;
+       direction: ltr;
+       text-align: left;
+       white-space: pre;
+       word-spacing: normal;
+       word-break: normal;
+       font-size: .9em;
+       line-height: 1.2em;
+
+       -moz-tab-size: 4;
+       -o-tab-size: 4;
+       tab-size: 4;
+
+       -webkit-hyphens: none;
+       -moz-hyphens: none;
+       -ms-hyphens: none;
+       hyphens: none;
+}
+
+pre > code[class*="language-"] {
+       font-size: 1em;
+}
+
+pre[class*="language-"]::-moz-selection, pre[class*="language-"] 
::-moz-selection,
+code[class*="language-"]::-moz-selection, code[class*="language-"] 
::-moz-selection {
+       background: #C1DEF1;
+}
+
+pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
+code[class*="language-"]::selection, code[class*="language-"] ::selection {
+       background: #C1DEF1;
+}
+
+/* Code blocks */
+pre[class*="language-"] {
+       padding: 1em;
+       margin: .5em 0;
+       overflow: auto;
+       border: 1px solid #dddddd;
+       background-color: white;
+}
+
+/* Inline code */
+:not(pre) > code[class*="language-"] {
+       padding: .2em;
+       padding-top: 1px;
+       padding-bottom: 1px;
+       background: #f8f8f8;
+       border: 1px solid #dddddd;
+}
+
+.token.comment,
+.token.prolog,
+.token.doctype,
+.token.cdata {
+       color: #008000;
+       font-style: italic;
+}
+
+.token.namespace {
+       opacity: .7;
+}
+
+.token.string {
+       color: #A31515;
+}
+
+.token.punctuation,
+.token.operator {
+       color: #393A34; /* no highlight */
+}
+
+.token.url,
+.token.symbol,
+.token.number,
+.token.boolean,
+.token.variable,
+.token.constant,
+.token.inserted {
+       color: #36acaa;
+}
+
+.token.atrule,
+.token.keyword,
+.token.attr-value,
+.language-autohotkey .token.selector,
+.language-json .token.boolean,
+.language-json .token.number,
+code[class*="language-css"] {
+       color: #0000ff;
+}
+
+.token.function {
+       color: #393A34;
+}
+
+.token.deleted,
+.language-autohotkey .token.tag {
+       color: #9a050f;
+}
+
+.token.selector,
+.language-autohotkey .token.keyword {
+       color: #00009f;
+}
+
+.token.important {
+       color: #e90;
+}
+
+.token.important,
+.token.bold {
+       font-weight: bold;
+}
+
+.token.italic {
+       font-style: italic;
+}
+
+.token.class-name,
+.language-json .token.property {
+       color: #2B91AF;
+}
+
+.token.tag,
+.token.selector {
+       color: #800000;
+}
+
+.token.attr-name,
+.token.property,
+.token.regex,
+.token.entity {
+       color: #ff0000;
+}
+
+.token.directive.tag .tag {
+       background: #ffff00;
+       color: #393A34;
+}
+
+/* overrides color-values for the Line Numbers plugin
+ * http://prismjs.com/plugins/line-numbers/
+ */
+.line-numbers.line-numbers .line-numbers-rows {
+       border-right-color: #a5a5a5;
+}
+
+.line-numbers .line-numbers-rows > span:before {
+       color: #2B91AF;
+}
+
+/* overrides color-values for the Line Highlight plugin
+* http://prismjs.com/plugins/line-highlight/
+*/
+.line-highlight.line-highlight {
+       background: rgba(193, 222, 241, 0.2);
+       background: -webkit-linear-gradient(left, rgba(193, 222, 241, 0.2) 70%, 
rgba(221, 222, 241, 0));
+       background: linear-gradient(to right, rgba(193, 222, 241, 0.2) 70%, 
rgba(221, 222, 241, 0));
+}
diff --git a/src/css/semantic.min.css b/src/css/semantic.min.css
new file mode 100644
index 0000000..0f4bd9b
--- /dev/null
+++ b/src/css/semantic.min.css
@@ -0,0 +1,372 @@
+ /*
+ * # Semantic UI - 2.5.0
+ * https://github.com/Semantic-Org/Semantic-UI
+ * http://www.semantic-ui.com/
+ *
+ * Copyright 2022 Contributors
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */
+// @import 
url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin);/*!
+ * # Semantic UI - Reset
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/*,:after,:before{box-sizing:inherit}html{box-sizing:border-box}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none}/*!
 normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css 
*/html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em
 0}figcaption,figure,main{display:block}figure{margin:1 [...]
+ * # Semantic UI - Site
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/body,html{height:100%}html{font-size:14px}body{margin:0;padding:0;overflow-x:hidden;min-width:320px;background:#fff;font-family:Lato,'Helvetica
 
Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4285em;color:rgba(0,0,0,.87);font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:Lato,'Helvetica
 Neue',Arial,Helvetica,sans-serif;line-height:1.28571429em;margin:calc(2rem - 
.14285714em) 0 
1rem;font-weight:700;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.71428571rem}
 [...]
+ * # Semantic UI - Button
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline:0;border:none;vertical-align:baseline;background:#e0e1e2
 none;color:rgba(0,0,0,.6);font-family:Lato,'Helvetica 
Neue',Arial,Helvetica,sans-serif;margin:0 .25em 0 0;padding:.78571429em 1.5em 
.78571429em;text-transform:none;text-shadow:none;font-weight:700;line-height:1em;font-style:normal;text-align:center;text-decoration:none;border-radius:.28571429rem;box-shadow:0
 0 0 1px transparent inset,0 0 0 0 rgba(34,36,38,.15) [...]
+ * # Semantic UI - Container
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.container{display:block;max-width:100%!important}@media only screen and 
(max-width:767px){.ui.container{width:auto!important;margin-left:1em!important;margin-right:1em!important}.ui.grid.container{width:auto!important}.ui.relaxed.grid.container{width:auto!important}.ui.very.relaxed.grid.container{width:auto!important}}@media
 only screen and (min-width:768px) and 
(max-width:991px){.ui.container{width:723px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{wi
 [...]
+ * # Semantic UI - Divider
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.divider{margin:1rem 
0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.ui.divider:not(.vertical):not(.horizontal){border-top:1px
 solid rgba(34,36,38,.15);border-bottom:1px solid 
rgba(255,255,255,.1)}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}.ui.horizontal.divider{display:tabl
 [...]
+ * # Semantic UI - Flag
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0
 .5em 0 
0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(themes/default/assets/images/flags.png)
 no-repeat -108px 
-1976px;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0
 0}i.flag.ae:before,i.fl [...]
+ * # Semantic UI - Header
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.header{border:none;margin:calc(2rem - .14285714em) 0 1rem;padding:0 
0;font-family:Lato,'Helvetica 
Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.28571429em;text-transform:none;color:rgba(0,0,0,.87)}.ui.header:first-child{margin-top:-.14285714em}.ui.header:last-child{margin-bottom:0}.ui.header
 
.sub.header{display:block;font-weight:400;padding:0;margin:0;font-size:1rem;line-height:1.2em;color:rgba(0,0,0,.6)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5e
 [...]
+ * # Semantic UI - Icon
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/@font-face{font-family:Icons;src:url(themes/default/assets/fonts/icons.eot);src:url(themes/default/assets/fonts/icons.eot?#iefix)
 format('embedded-opentype'),url(themes/default/assets/fonts/icons.woff2) 
format('woff2'),url(themes/default/assets/fonts/icons.woff) 
format('woff'),url(themes/default/assets/fonts/icons.ttf) 
format('truetype'),url(themes/default/assets/fonts/icons.svg#icons) 
format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-tra
 [...]
+ * # Semantic UI - Image
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image
 img,.ui.image 
svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.hidden.transition.image,.ui.hidden.transition.images{display:block;visibility:hidden}.ui.images>.hidden.transition{display:inline-block;visibility:hidden}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.45}.ui.in
 [...]
+ * # Semantic UI - Input
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.input{position:relative;font-weight:400;font-style:normal;display:inline-flex;color:rgba(0,0,0,.87)}.ui.input>input{margin:0;max-width:100%;flex:1
 0 
auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.21428571em;font-family:Lato,'Helvetica
 Neue',Arial,Helvetica,sans-serif;padding:.67857143em 
1em;background:#fff;border:1px solid 
rgba(34,36,38,.15);color:rgba(0,0,0,.87);border-radius:.28571429rem;transition:box-shadow
 .1s ease,border-color .1 [...]
+ * # Semantic UI - Label
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.label{display:inline-block;line-height:1;vertical-align:baseline;margin:0 
.14285714em;background-color:#e8e8e8;background-image:none;padding:.5833em 
.833em;color:rgba(0,0,0,.6);text-transform:none;font-weight:700;border:0 solid 
transparent;border-radius:.28571429rem;transition:background .1s 
ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label>a{cursor:pointer;color:inherit;opacity:.5;transition:.1s
 opacity ease}.ui.label [...]
+ * # Semantic UI - List
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0 
0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list
 .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list 
li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.21428571em
 0;line-height:1.14285714em}.ui.list>.item:after,.ui [...]
+ * # Semantic UI - Loader
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;transform:translateX(-50%)
 
translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;border-radius:500rem;border:.2em
 solid 
rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;-webkit-animation:loader
 .6s linear;animation:loader .6s 
linear;-webkit-animation-iteration-count:infinite;animation-iterat [...]
+ * # Semantic UI - Loader
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.placeholder{position:static;overflow:hidden;-webkit-animation:placeholderShimmer
 2s linear;animation:placeholderShimmer 2s 
linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;background-color:#fff;background-image:linear-gradient(to
 right,rgba(0,0,0,.08) 0,rgba(0,0,0,.15) 15%,rgba(0,0,0,.08) 
30%);background-size:1200px 100%;max-width:30rem}@-webkit-keyframes 
placeholderShimmer{0%{background-position:-1200px 
0}100%{background-position:1200px 0}}@key [...]
+ * # Semantic UI - Rail
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.rail{position:absolute;top:0;width:300px;height:100%}.ui.left.rail{left:auto;right:100%;padding:0
 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 
2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 
2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 
0 0;margin:0 2rem 0 
0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{padding:0 2.5rem 0 
0;margin:0 2.5rem 0 0;border-right:1px solid rgba(34,36, [...]
+ * # Semantic UI - Reveal
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.reveal{display:inherit;position:relative!important;font-size:0!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:3!important;transition:all
 .5s ease 
.1s}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.active.reveal
 .visible.content,.ui.reveal:hover 
.visible.content{z-index:4!important}.ui.slide.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.con
 [...]
+ * # Semantic UI - Segment
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.segment{position:relative;background:#fff;box-shadow:0 1px 2px 0 
rgba(34,36,38,.15);margin:1rem 0;padding:1em 
1em;border-radius:.28571429rem;border:1px solid 
rgba(34,36,38,.15)}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.vertical.segment{margin:0;padding-left:0;padding-right:0;background:none
 transparent;border-radius:0;box-shadow:none;border:none;border-bottom:1px 
solid 
rgba(34,36,38,.15)}.ui.vertical.segment:last-child{border-bottom:none}.ui.i 
[...]
+ * # Semantic UI - Step
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.steps{display:inline-flex;flex-direction:row;align-items:stretch;margin:1em
 
0;background:'';box-shadow:none;line-height:1.14285714em;border-radius:.28571429rem;border:1px
 solid 
rgba(34,36,38,.15)}.ui.steps:first-child{margin-top:0}.ui.steps:last-child{margin-bottom:0}.ui.steps
 .step{position:relative;display:flex;flex:1 0 
auto;flex-wrap:wrap;flex-direction:row;vertical-align:middle;align-items:center;justify-content:center;margin:0
 0;padding:1.14285714em 2em;background:#fff;color: [...]
+ * # Semantic UI - Breadcrumb
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.breadcrumb{line-height:1;display:inline-block;margin:0 
0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb
 .divider{display:inline-block;opacity:.7;margin:0 .21428571rem 
0;font-size:.92857143em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb
 a{color:#4183c4}.ui.breadcrumb a:hover{color:#1e70bf}.ui.breadcrumb 
.icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb 
a.section{cursor:po [...]
+ * # Semantic UI - Form
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.form{position:relative;max-width:100%}.ui.form>p{margin:1em 0}.ui.form 
.field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form 
.fields:last-child .field{margin-bottom:0}.ui.form .fields 
.field{clear:both;margin:0}.ui.form .field>label{display:block;margin:0 0 
.28571429rem 
0;color:rgba(0,0,0,.87);font-size:.92857143em;font-weight:700;text-transform:none}.ui.form
 input:not([type]),.ui.form input[type=date],.ui.form 
input[type=datetime-local],.ui.form input[type=email],. [...]
+ * # Semantic UI - Grid
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.grid{display:flex;flex-direction:row;flex-wrap:wrap;align-items:stretch;padding:0}.ui.grid{margin-top:-1rem;margin-bottom:-1rem;margin-left:-1rem;margin-right:-1rem}.ui.relaxed.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui[class*="very
 
relaxed"].grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;width:6.25%;padding-left:1rem;padding-right:1rem;vertical-align:top}.u
 [...]
+ * # Semantic UI - Message
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.message{position:relative;min-height:1em;margin:1em 
0;background:#f8f8f9;padding:1em 
1.5em;line-height:1.4285em;color:rgba(0,0,0,.87);transition:opacity .1s 
ease,color .1s ease,background .1s ease,box-shadow .1s 
ease;border-radius:.28571429rem;box-shadow:0 0 0 1px rgba(34,36,38,.22) inset,0 
0 0 0 
transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message
 .header{display:block;font-family:Lato,'Helvetica 
Neue',Arial,Helvetica,sans-serif;font [...]
+ * # Semantic UI - Table
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid 
rgba(34,36,38,.15);box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table
 td,.ui.table th{transition:background .1s ease,color .1s ease}.ui.table 
thead{box-shadow:none}.ui.table thead 
th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.9285
 [...]
+ * # Semantic UI - Ad
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Copyright 2013 Contributors
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.ad{display:block;overflow:hidden;margin:1em 
0}.ui.ad:first-child{margin:0}.ui.ad:last-child{margin:0}.ui.ad 
iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium
 rectangle"].ad{width:300px;height:250px}.ui[class*="large 
rectangle"].ad{width:336px;height:280px}.ui[class*="half 
page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small
 square"].ad{width:200px;height:200px}.ui[class*="small [...]
+ * # Semantic UI - Item
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.card,.ui.cards>.card{max-width:100%;position:relative;display:flex;flex-direction:column;width:290px;min-height:0;background:#fff;padding:0;border:none;border-radius:.28571429rem;box-shadow:0
 1px 3px 0 #d4d4d5,0 0 0 1px #d4d4d5;transition:box-shadow .1s ease,transform 
.1s ease;z-index:''}.ui.card{margin:1em 0}.ui.card a,.ui.cards>.card 
a{cursor:pointer}.ui.card:first-child{margin-top:0}.ui.card:last-child{margin-bottom:0}.ui.cards{display:flex;margin:-.875em
 -.5em;flex-wrap:wrap}. [...]
+ * # Semantic UI - Comment
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.comments{margin:1.5em 
0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments
 .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 
0;border:none;border-top:none;line-height:1.2}.ui.comments 
.comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment 
.comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment 
.comments:before{position:absolute;top:0;left:0}.ui.comments .comment .commen 
[...]
+ * # Semantic UI - Feed
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.feed{margin:1em 
0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:flex;flex-direction:row;width:100%;padding:.21428571rem
 0;margin:0;background:0 
0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;flex:0
 0 
auto;width:2.5em;height:auto;align-self:stretch;text-align:left}.ui.feed>.event>.label
 .icon{opacity:1;font-size:1.5em;width:100%; [...]
+ * # Semantic UI - Item
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.items>.item{display:flex;margin:1em 
0;width:100%;min-height:0;background:0 
0;padding:0;border:none;border-radius:0;box-shadow:none;transition:box-shadow 
.1s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 
0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:'
 
';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:las
 [...]
+ * # Semantic UI - Statistic
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.statistic{display:inline-flex;flex-direction:column;margin:1em 
0;max-width:auto}.ui.statistic+.ui.statistic{margin:0 0 0 
1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{display:flex;align-items:flex-start;flex-wrap:wrap}.ui.statistics>.statistic{display:inline-flex;flex:0
 1 auto;flex-direction:column;margin:0 1.5em 
1em;max-width:auto}.ui.statistics{display:flex;margin:1em -1.5em 
-1em}.ui.statistics:after{display:block;content:'  [...]
+ * # Semantic UI - Accordion
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ */.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion 
.accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion 
.title,.ui.accordion .title{cursor:pointer}.ui.accordion 
.title:not(.ui){padding:.5em 0;font-family:Lato,'Helvetica 
Neue',Arial,Helvetica,sans-serif;font-size:1em;color:rgba(0,0,0,.87)}.ui.accordion
 .accordion .title~.content,.ui.accordion 
.title~.content{display:none}.ui.accordion:not(.styled) .accordion 
.title~.content:not(.ui),.ui.accordion:not(.styled) . [...]
+ * # Semantic UI - Checkbox
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.checkbox{position:relative;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}.ui.checkbox
 input[type=checkbox],.ui.checkbox 
input[type=radio]{cursor:pointer;position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:3;width:17px;height:17px}.ui.checkbox
 .box,.ui.checkbox label{cursor:auto;position:relative;display:block;paddi [...]
+ * # Semantic UI - Dimmer
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.dimmable:not(body){position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;padding:1em;background-color:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;transition:background-color
 .5s 
linear;flex-direction:column;align-items:center;justify-content:center;-webkit-user-select:none;-moz
 [...]
+ * # Semantic UI - Dropdown
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:0;text-align:left;transition:box-shadow
 .1s ease,width .1s ease;-webkit-tap-highlight-color:transparent}.ui.dropdown 
.menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;margin:0;padding:0
 0;background:#fff;font-size:1em;text-shadow:none;text-align:left;box-shadow:0 
2px 3px 0 rgba(34,36,38,.15);border:1px solid rgba(34 [...]
+ * # Semantic UI - Video
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#dcddde;padding-bottom:56.25%}.ui.embed
 embed,.ui.embed iframe,.ui.embed 
object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent
 45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:abso [...]
+ * # Semantic UI - Modal
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.modal{position:absolute;display:none;z-index:1001;text-align:left;background:#fff;border:none;box-shadow:1px
 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);transform-origin:50% 
25%;flex:0 0 
auto;border-radius:.28571429rem;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.28571429rem;border-top-right-radiu
 [...]
+ * # Semantic UI - Nag
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em
 1em;background:#555;box-shadow:0 1px 2px 0 
rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.87);border-radius:0
 0 .28571429rem .28571429rem;transition:.2s background 
ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 
.5em;color:#fff}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1
 [...]
+ * # Semantic UI - Popup
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.popup{display:none;position:absolute;top:0;right:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;z-index:1900;border:1px
 solid 
#d4d4d5;line-height:1.4285em;max-width:250px;background:#fff;padding:.833em 
1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.87);border-radius:.28571429rem;box-shadow:0
 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 
rgba(34,36,38,.15)}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica 
Neue',Arial,Helvetica,sans-serif [...]
+ * # Semantic UI - Progress Bar
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em
 0 
2.5em;box-shadow:none;background:rgba(0,0,0,.1);padding:0;border-radius:.28571429rem}.ui.progress:first-child{margin:0
 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.progress 
.bar{display:block;line-height:1;position:relative;width:0%;min-width:2em;background:#888;border-radius:.28571429rem;transition:width
 .1s ease,background-color .1s ease}.ui.progress 
.bar>.progress{white-space:nowrap;positio [...]
+ * # Semantic UI - Rating
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.rating{display:inline-flex;white-space:nowrap;vertical-align:baseline}.ui.rating:last-child{margin-right:0}.ui.rating
 
.icon{padding:0;margin:0;text-align:center;font-weight:400;font-style:normal;flex:1
 0 auto;cursor:pointer;width:1.25em;height:auto;transition:opacity .1s 
ease,background .1s ease,text-shadow .1s ease,color .1s ease}.ui.rating 
.icon{background:0 0;color:rgba(0,0,0,.15)}.ui.rating .active.icon{background:0 
0;color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating  [...]
+ * # Semantic UI - Search
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.search{position:relative}.ui.search>.prompt{margin:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:400;line-height:1.21428571em;padding:.67857143em
 1em;font-size:1em;background:#fff;border:1px solid 
rgba(34,36,38,.15);color:rgba(0,0,0,.87);box-shadow:0 0 0 0 transparent 
inset;transition:background-color .1s ease,color .1s ease,box-shadow .1s 
ease,border-color .1s ease}.ui.search .prompt{border-radiu [...]
+ * # Semantic UI - Shape
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.shape{position:relative;vertical-align:top;display:inline-block;perspective:2000px;transition:transform
 .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s 
ease-in-out}.ui.shape .sides{transform-style:preserve-3d}.ui.shape 
.side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.shape
 .side{display:none}.ui.shape .side 
*{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ui.c
 [...]
+ * # Semantic UI - Sidebar
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.sidebar{position:fixed;top:0;left:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:none;will-change:transform;transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;max-height:100%;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.left.sidebar{right:auto;left:0;transform:translate3d(-100%,0,0)}.ui.
 [...]
+ * # Semantic UI - Sticky
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.sticky{position:static;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}/*!
+ * # Semantic UI - Tab
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading
 
*{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em
 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid 
rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolu
 [...]
+ * # Semantic UI - Transition
+ * http://github.com/semantic-org/semantic-ui/
+ *
+ *
+ * Released under the MIT license
+ * http://opensource.org/licenses/MIT
+ *
+ 
*/.transition{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animating.transition{-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.vi
 [...]
diff --git a/src/css/themes/default/assets/fonts/brand-icons.woff2 
b/src/css/themes/default/assets/fonts/brand-icons.woff2
new file mode 100644
index 0000000..0d575fd
Binary files /dev/null and 
b/src/css/themes/default/assets/fonts/brand-icons.woff2 differ
diff --git a/src/css/themes/default/assets/fonts/icons.woff2 
b/src/css/themes/default/assets/fonts/icons.woff2
new file mode 100644
index 0000000..eea9aa2
Binary files /dev/null and b/src/css/themes/default/assets/fonts/icons.woff2 
differ


Reply via email to