diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/static/CNAME b/CNAME similarity index 100% rename from static/CNAME rename to CNAME diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4b5f721 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Jimmy Cai + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..fbfbbca --- /dev/null +++ b/README.md @@ -0,0 +1,69 @@ +logo + +# Hugo Theme Stack Starter Template + +This is a quick start template for [Hugo theme Stack](https://github.com/CaiJimmy/hugo-theme-stack). It uses [Hugo modules](https://gohugo.io/hugo-modules/) feature to load the theme. + +It comes with a basic theme structure and configuration. GitHub action has been set up to deploy the theme to a public GitHub page automatically. Also, there's a cron job to update the theme automatically everyday. + +## Get started + +1. Click *Use this template*, and create your repository as `.github.io` on GitHub. +![Step 1](https://user-images.githubusercontent.com/5889006/156916624-20b2a784-f3a9-4718-aa5f-ce2a436b241f.png) + +2. Once the repository is created, create a GitHub codespace associated with it. +![Create codespace](https://user-images.githubusercontent.com/5889006/156916672-43b7b6e9-4ffb-4704-b4ba-d5ca40ffcae7.png) + +3. And voila! You're ready to go. The codespace has been configured with the latest version of Hugo extended, just run `hugo server` in the terminal and see your new site in action. + +4. Check `config` folder for the configuration files. You can edit them to suit your needs. Make sure to update the `baseurl` property in `config/_default/config.toml` to your site's URL. + +5. Open Settings -> Pages. Change the build branch from `master` to `gh-pages`. +![Build](https://github.com/namanh11611/hugo-theme-stack-starter/assets/16586200/12c763cd-bead-4923-b610-8788f388fcb5) + +6. Once you're done editing the site, just commit it and push it. GitHub action will deploy the site automatically to GitHub page asociated with the repository. +![GitHub action](https://user-images.githubusercontent.com/5889006/156916881-90b8bb9b-1925-4e60-9d7a-8026cda729bf.png) + +--- + +In case you don't want to use GitHub codespace, you can also run this template in your local machine. **You need to install Git, Go and Hugo extended locally.** + +## Update theme manually + +Run: + +```bash +hugo mod get -u github.com/CaiJimmy/hugo-theme-stack/v3 +hugo mod tidy +``` + +> This starter template has been configured with `v3` version of theme. Due to the limitation of Go module, once the `v4` or up version of theme is released, you need to update the theme manually. (Modifying `config/module.toml` file) + +## Deploy to another static page hostings + +If you want to build this site using another static page hosting, you need to make sure they have Go installed in the machine. + +
+ Vercel + +You need to overwrite build command to install manually Go: + +``` +amazon-linux-extras install golang1.11 && hugo --gc --minify +``` + +![](https://user-images.githubusercontent.com/5889006/156917172-01e4d418-3469-4ffb-97e4-a905d28b8424.png) + +If you are using Node.js 20, you need to overwrite the install command to install manually Go: + +``` +dnf install -y golang +``` + +![image](https://github.com/zhi-yi-huang/hugo-theme-stack-starter/assets/83860323/777c1109-dfc8-4893-9db7-1305ec027cf5) + + +Make sure also to specify Hugo version in the environment variable `HUGO_VERSION` (Use the latest version of Hugo extended): + +![Environment variable](https://user-images.githubusercontent.com/5889006/156917212-afb7c70d-ab85-480f-8288-b15781a462c0.png) +
diff --git a/archetypes/default.md b/archetypes/default.md deleted file mode 100644 index bc4096a..0000000 --- a/archetypes/default.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -date: '{{ .Date }}' -draft: true -title: '{{ replace .File.ContentBaseName `-` ` ` | title }}' ---- - diff --git a/assets/icons/gitea.svg b/assets/icons/gitea.svg new file mode 100644 index 0000000..4329134 --- /dev/null +++ b/assets/icons/gitea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/scholar.svg b/assets/icons/scholar.svg new file mode 100644 index 0000000..38beac4 --- /dev/null +++ b/assets/icons/scholar.svg @@ -0,0 +1,7 @@ + + \ No newline at end of file diff --git a/assets/img/avatar.png b/assets/img/avatar.png new file mode 100644 index 0000000..bab4bde Binary files /dev/null and b/assets/img/avatar.png differ diff --git a/assets/img/me.png b/assets/img/me.png new file mode 100644 index 0000000..691023e Binary files /dev/null and b/assets/img/me.png differ diff --git a/assets/jsconfig.json b/assets/jsconfig.json new file mode 100644 index 0000000..d0f8387 --- /dev/null +++ b/assets/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "*": [ + "../../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/!cai!jimmy/hugo-theme-stack/v3@v3.30.0/assets/*" + ] + } + } +} \ No newline at end of file diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss new file mode 100644 index 0000000..942c2bb --- /dev/null +++ b/assets/scss/custom.scss @@ -0,0 +1,3 @@ +/* + You can add your own custom styles here. +*/ \ No newline at end of file diff --git a/config.toml b/config.toml deleted file mode 100644 index 6af4b77..0000000 --- a/config.toml +++ /dev/null @@ -1,164 +0,0 @@ -baseurl = "" -languageCode = "en-us" -title = "Balkian's site" -theme = "balkian" -preserveTaxonomyNames = true -disqusShortname = "balkian" -googleAnalytics = "" -Paginate = 5 -pygmentsCodeFences = true -pygmentsOptions = "linenos=table" -summaryLength = 50 -relativeURLs = true -copyright = "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License." - -[outputs] - home = ["HTML", "RSS", "JSON"] - -[taxonomies] - category = "categories" - tag = "tags" - post = "posts" - -[params.author] - name = "J. Fernando Sánchez" - profile = "http://balkian.com" - -[params] - # Sets the meta tag description, usually reserved for the main page - description = "Balkian's ramblings" - # This will appear on the top left of the navigation bar - navbarTitle = "Balkian" - # Social media buttons that appear on the sidebar - socialAppearAtTop = true - socialAppearAtBottom = true - # set this to the section name if section is not post - viewMorePostLink = "/post/" - - subtitle = "Build a beautiful and simple website in minutes" - logo = "img/me.png" - favicon = "img/favicon.ico" - dateFormat = "January 2, 2006" - commit = false - rss = true - comments = true - -# Optional Params - categoriesByCount = true - includeReadingTime = true - # The set of favicons used are based on the write-up from this link: - # https://github.com/audreyr/favicon-cheat-sheet - # Please see the favicon partial template for more information - loadFavicon = false - faviconVersion = "" - - # Load custom CSS or JavaScript files. This replaces the deprecated params - # minifiedFilesCSS and minifiedFilesJS. The variable is an array so that you - # can load multiple files if necessary. You can also load the standard theme - # files by adding the value, "default". - # customCSS = ["default", "/path/to/file"] - # customJS = ["default", "/path/to/file"] - - # Loading min files for exampleSite - customCSS = ["/css/main.min.css"] - customJS = ["/js/main.min.js"] - -# parms.intro will appear on the sidebar -# This is optional, but it's suggested to use -[params.intro] - header = "Balkian" - - - paragraph = "J. Fernando Sánchez" - - about = "Fernando Sánchez's blog" - -# This will also appear on the sidebar. -# A width of less than 100px is recommended -# This is optional -[params.intro.pic] - src = "/img/logo.png" - # modify your picture in the shape of a circle or - # future imperfect's hexagonal shape - circle = true - imperfect = false - width = "300px" - alt = "Balkian" - -# Adjust the amount of recent posts on the sidebar. -# This is optional. The default value 5 will be used -[params.postAmount] - sidebar = 4 - -# # Set up your menu items in the navigation bar -# # You can use identifier to prepend a font awesome icon to your text -# [[menu.main]] -# name = "Blog" -# url = "/post" -# identifier = "fa fa-newspaper-o" -# weight = 1 - -[[menu.main]] - name = "Blog" - url = "/post/" - identifier = "post" - weight = 1 - -[[menu.main]] - name = "Tags" - url = "/tags/" - identifier = "tags" - weight = 2 - -[[menu.main]] - name = "Cheatsheets" - identifier = "cheatsheet" - url = "/cheatsheet/" - weight = 3 - -[[menu.main]] - name = "Projects" - identifier = "project" - url = "/project/" - - -# Insert your username and the icon will apear on the page as long as -# socialAppearAtTop or socialAppearAtBottom is set to true in the params area -# The social media icons will appear on the sidebar -[social] - github = "balkian" - bitbucket = "balkian" - jsfiddle = "" - codepen = "" - foursquare = "" - dribbble = "" - deviantart = "" - behance = "" - flickr = "" - instagram = "" - youtube = "" - vimeo = "" - vine = "" - medium = "" - wordpress = "" - tumblr = "" - xing = "" - linkedin = "" - slideshare = "" - stackoverflow = "balkian" - reddit = "balkian" - pinterest = "" - googleplus = "" - facebook = "" - facebook_admin = "" - twitter_domain = "" - twitter = "balkian" - email = "" - -[markup] - [markup.tableOfContents] - endLevel = 3 - startLevel = 1 - -[markup.goldmark.renderer] -unsafe= true diff --git a/config/_default/_languages.toml b/config/_default/_languages.toml new file mode 100644 index 0000000..901aea9 --- /dev/null +++ b/config/_default/_languages.toml @@ -0,0 +1,6 @@ +# Rename this file to languages.toml to enable multilingual support +[en] +languageName = "English" +languagedirection = "ltr" +title = "Example Site" +weight = 1 diff --git a/config/_default/config.toml b/config/_default/config.toml new file mode 100644 index 0000000..ff82354 --- /dev/null +++ b/config/_default/config.toml @@ -0,0 +1,18 @@ +# Change baseurl before deploy +baseurl = "https://balkian.com" +languageCode = "en-us" +title = "J. Fernando Sánchez" + +# Theme i18n support +# Available values: en, fr, id, ja, ko, pt-br, zh-cn, zh-tw, es, de, nl, it, th, el, uk, ar +defaultContentLanguage = "en" + +# Set hasCJKLanguage to true if DefaultContentLanguage is in [zh-cn ja ko] +# This will make .Summary and .WordCount behave correctly for CJK languages. +hasCJKLanguage = false + +# Change it to your Disqus shortname before using +#disqusShortname = "hugo-theme-stack" + +[pagination] +pagerSize = 5 diff --git a/config/_default/markup.toml b/config/_default/markup.toml new file mode 100644 index 0000000..98928e0 --- /dev/null +++ b/config/_default/markup.toml @@ -0,0 +1,26 @@ +# Markdown renderer configuration +[goldmark.renderer] +unsafe = true + +[goldmark.extensions.passthrough] +enable = true + +# LaTeX math support +# https://gohugo.io/content-management/mathematics/ +[goldmark.extensions.passthrough.delimiters] +block = [['\[', '\]'], ['$$', '$$']] +inline = [['\(', '\)']] + +[tableOfContents] +endLevel = 4 +ordered = true +startLevel = 2 + +[highlight] +noClasses = false +codeFences = true +guessSyntax = true +lineNoStart = 1 +lineNos = true +lineNumbersInTable = true +tabWidth = 4 \ No newline at end of file diff --git a/config/_default/menu.toml b/config/_default/menu.toml new file mode 100644 index 0000000..cd1b018 --- /dev/null +++ b/config/_default/menu.toml @@ -0,0 +1,60 @@ +# Configure main menu and social menu +#[[main]] +#identifier = "home" +#name = "Home" +#url = "/" +#[main.params] +#icon = "home" +#newtab = true + +#[[main]] +#name = "Cheatsheets" +#identifier = "cheatsheets" +#url = "/cheatsheet/" +# +#[main.params] +#icon = "hash" +#weight = 3 +# +#[[main]] +#name = "Projects" +#identifier = "projects" +#url = "/projects/" +# +#[main.params] +#icon = "clock" + +[[social]] +identifier = "github" +name = "GitHub" +url = "https://github.com/CaiJimmy/hugo-theme-stack" +weight = 1 + +[social.params] +icon = "brand-github" + +#[[social]] +#identifier = "twitter" +#name = "Twitter" +#url = "https://twitter.com" +# +#[social.params] +#icon = "brand-twitter" + +[[social]] +identifier = "gitea" +name = "gitea" +url = "https://git.sinpapel.es/balkian" +weight = 2 + +[social.params] +icon = "gitea" + +[[social]] +identifier = "scholar" +name = "Google scholar" +url = "https://scholar.google.com/citations?user=JLNusZ8AAAAJ&hl=en" +weight = 3 + +[social.params] +icon = "scholar" diff --git a/config/_default/module.toml b/config/_default/module.toml new file mode 100644 index 0000000..f13256c --- /dev/null +++ b/config/_default/module.toml @@ -0,0 +1,2 @@ +[[imports]] +path = "github.com/CaiJimmy/hugo-theme-stack/v3" diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..abb5439 --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,152 @@ +# Pages placed under these sections will be shown on homepage and archive page. +mainSections = ["post"] +# Output page's full content in RSS. +rssFullContent = true +favicon = "img/favicon.ico" + +[footer] +since = 2012 +customText = "" + +[dateFormat] +published = "02 Jan 2006" +lastUpdated = "02 Jan 2006" + +[sidebar] +#emoji = "🧠" +emoji = "💭" +subtitle = "My ramblings and reflections" + +[sidebar.avatar] +enabled = true +local = true +src = "img/me.png" + +[article] +headingAnchor = false +math = true +toc = true +readingTime = true + +[article.license] +enabled = true +default = "Licensed under CC BY-NC-SA 4.0" + +## Widgets +[[widgets.homepage]] +type = "search" + +[[widgets.homepage]] +type = "archives" + +[widgets.homepage.params] +limit = 5 + +[[widgets.homepage]] +type = "categories" + +[widgets.homepage.params] +limit = 10 + +[[widgets.homepage]] +type = "tag-cloud" + +[widgets.homepage.params] +limit = 10 + +[[widgets.page]] +type = "toc" + +[opengraph.twitter] +site = "" +card = "summary_large_image" + +[defaultImage.opengraph] +enabled = false +local = false +src = "" + +[colorScheme] +toggle = true +default = "auto" + +[imageProcessing.cover] +enabled = true + +[imageProcessing.content] +enabled = true + +## Comments +[comments] +enabled = false +provider = "disqus" + +[comments.disqusjs] +shortname = "" +apiUrl = "" +apiKey = "" +admin = "" +adminLabel = "" + +[comments.utterances] +repo = "" +issueTerm = "pathname" +label = "" + +[comments.remark42] +host = "" +site = "" +locale = "" + +[comments.vssue] +platform = "" +owner = "" +repo = "" +clientId = "" +clientSecret = "" +autoCreateIssue = false + +[comments.waline] +serverURL = "" +lang = "" +visitor = "" +avatar = "" +emoji = ["https://cdn.jsdelivr.net/gh/walinejs/emojis/weibo"] +requiredMeta = ["name", "email", "url"] +placeholder = "" + +[comments.waline.locale] +admin = "Admin" + +[comments.twikoo] +envId = "" +region = "" +path = "" +lang = "" + +[comments.cactus] +defaultHomeserverUrl = "https://matrix.cactus.chat:8448" +serverName = "cactus.chat" +siteName = "" + +[comments.giscus] +repo = "" +repoID = "" +category = "" +categoryID = "" +mapping = "" +lightTheme = "" +darkTheme = "" +reactionsEnabled = 1 +emitMetadata = 0 + +[comments.gitalk] +owner = "" +admin = "" +repo = "" +clientID = "" +clientSecret = "" + +[comments.cusdis] +host = "" +id = "" diff --git a/config/_default/permalinks.toml b/config/_default/permalinks.toml new file mode 100644 index 0000000..2499a7e --- /dev/null +++ b/config/_default/permalinks.toml @@ -0,0 +1,3 @@ +# Permalinks format of each content section +post = "/p/:slug/" +page = "/:slug/" \ No newline at end of file diff --git a/config/_default/related.toml b/config/_default/related.toml new file mode 100644 index 0000000..ae9f69a --- /dev/null +++ b/config/_default/related.toml @@ -0,0 +1,12 @@ +# Related contents configuration +includeNewer = true +threshold = 60 +toLower = false + +[[indices]] +name = "tags" +weight = 100 + +[[indices]] +name = "categories" +weight = 200 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..636abae --- /dev/null +++ b/content/_index.md @@ -0,0 +1,8 @@ +--- +menu: + main: + name: Home + weight: 1 + params: + icon: home +--- \ No newline at end of file diff --git a/content/categories/linux/_index.md b/content/categories/linux/_index.md new file mode 100644 index 0000000..7ec5fd6 --- /dev/null +++ b/content/categories/linux/_index.md @@ -0,0 +1,9 @@ +--- +title: Linux +description: Posts related to installing, maintaining and running GNU/Linux + +# Badge style +style: + background: "#2a9d8f" + color: "#fff" +--- diff --git a/content/categories/programming/_index.md b/content/categories/programming/_index.md new file mode 100644 index 0000000..4a0704c --- /dev/null +++ b/content/categories/programming/_index.md @@ -0,0 +1,10 @@ +--- +title: Programming +description: Posts related to programming languages +image: + +# Badge style +style: + background: "#ffd700" + color: "#000" +--- diff --git a/content/page/archives/index.md b/content/page/archives/index.md new file mode 100644 index 0000000..2b1bf20 --- /dev/null +++ b/content/page/archives/index.md @@ -0,0 +1,11 @@ +--- +title: "Archives" +date: 2022-03-06 +layout: "archives" +slug: "archives" +menu: + main: + weight: 2 + params: + icon: archives +--- \ No newline at end of file diff --git a/content/page/cheatsheet/_index.md b/content/page/cheatsheet/_index.md new file mode 100644 index 0000000..80f9d8a --- /dev/null +++ b/content/page/cheatsheet/_index.md @@ -0,0 +1,9 @@ +--- +title: Cheatsheets +name: "cheats" +menu: + main: + weight: 4 + params: + icon: infinity +--- diff --git a/content/cheatsheet/emacs.md b/content/page/cheatsheet/emacs.md similarity index 87% rename from content/cheatsheet/emacs.md rename to content/page/cheatsheet/emacs.md index f41f567..9c73d26 100644 --- a/content/cheatsheet/emacs.md +++ b/content/page/cheatsheet/emacs.md @@ -10,7 +10,7 @@ tags: --- -# Show plain text version +## Show plain text version diff --git a/content/cheatsheet/linux.md b/content/page/cheatsheet/linux.md similarity index 93% rename from content/cheatsheet/linux.md rename to content/page/cheatsheet/linux.md index 626298d..7f8d64c 100644 --- a/content/cheatsheet/linux.md +++ b/content/page/cheatsheet/linux.md @@ -1,14 +1,15 @@ --- title: Linux -author: "Unknown Author" +author: "Fernando Sánchez" description: Tips and tricks for GNU/Linux and Unix +categories: + - linux tags: - linux - arch - --- -# Black screen and LightDM doesn't unlock +## Black screen and LightDM doesn't unlock Add this to your /etc/lightdm/lightdm.conf file: @@ -18,7 +19,7 @@ logind-check-graphical=true ``` -# Edit previous commands +##Edit previous commands `fc` is a shell builtin to list and edit previous commands in an editor. In addition to editing a single line (which you can also do with `C-x C-e`), it also allows you to edit and run several lines at the same time. @@ -70,7 +71,7 @@ If you save and exit, all commands are executed as a script, and it will be adde Source: https://shapeshed.com/unix-fc/ -# Prevent logoff from killing tmux sessions +## Prevent logoff from killing tmux sessions Lately I've noticed that logging out of i3, intentionally or when i3 fails, would also kill any tmux or emacs sessions. This is extremely annoying. @@ -91,7 +92,7 @@ systemd-run --scope --user tmux Source: https://unix.stackexchange.com/questions/490267/prevent-logoff-from-killing-tmux-session -# Upload a temporary file +## Upload a temporary file Sometimes you just need to copy/paste a file from a server, and copying from the terminal can be a hassle. These two services are command-line "pastebins" just one curl away: diff --git a/content/cheatsheet/python.md b/content/page/cheatsheet/python.md similarity index 80% rename from content/cheatsheet/python.md rename to content/page/cheatsheet/python.md index e66deb7..00f4b47 100644 --- a/content/cheatsheet/python.md +++ b/content/page/cheatsheet/python.md @@ -1,14 +1,16 @@ --- title: Python description: Tips and useful libraries for python developers +categories: + - programming tags: - python - programming --- -# Interesting libraries +## Interesting libraries -## [TQDM](https://github.com/tqdm/tqdm) +### [TQDM](https://github.com/tqdm/tqdm) From tqdm's github repository: diff --git a/content/cheatsheet/rpi.md b/content/page/cheatsheet/rpi.md similarity index 94% rename from content/cheatsheet/rpi.md rename to content/page/cheatsheet/rpi.md index 9bfc7cf..1426469 100644 --- a/content/cheatsheet/rpi.md +++ b/content/page/cheatsheet/rpi.md @@ -5,7 +5,7 @@ tags: - rpi --- -# HDMI flickering +## HDMI flickering Avoid HDMI flickering/intermittent blanking on RPI with a 1400x1050 VGA monitor. diff --git a/content/page/links/index.md b/content/page/links/index.md new file mode 100644 index 0000000..a7ef451 --- /dev/null +++ b/content/page/links/index.md @@ -0,0 +1,19 @@ +--- +title: Links +links: + - title: GitHub + description: My GitHub profile + website: https://github.com/balkian + image: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png + - title: gitea + description: My gitea profile + website: https://git.sinpapel.es/balkian + image: https://git.sinpapel.es/assets/img/logo.svg +menu: + main: + weight: 4 + params: + icon: link + +comments: false +--- diff --git a/content/project/index.md b/content/page/projects/index.md similarity index 67% rename from content/project/index.md rename to content/page/projects/index.md index 4028b80..c30afb9 100644 --- a/content/project/index.md +++ b/content/page/projects/index.md @@ -1,19 +1,26 @@ --- -title: Index of projects - +title: Projects +menu: + main: + weight: 1 + params: + icon: clock --- Ongoing Projects ================ -* [Senpy](http://senpy.readthedocs.io): a framework for semantic sentiment and emotion analysis services. -* [Soil](http://soilsim.readthedocs.io): an agent-based simulator for social networks based on nx-sim and networkx. -* [Onyx](http://gsi.dit.upm.es/ontologies/onyx): an ontology for emotion analysis that includes concepts from W3C's provenance. - +* [Soil](https://soilsim.readthedocs.io): an agent-based simulator for social networks based on nx-sim and networkx. +* [Soilent](https://github.com/balkian/soilent): an efficient scheduler for soil using rust and pyo3. +* [Senpy](https://senpy.readthedocs.io): a framework for semantic sentiment and emotion analysis services. Past Projects ============= +* [Onyx](http://gsi.dit.upm.es/ontologies/onyx): an ontology for emotion analysis that includes concepts from W3C's provenance. +* [ESP8266 Clock NTP](https://github.com/balkian/ESP8266_Clock_NTP): a simple clock display using arduino, the ESP8266 and NTP (network time protocol). +* [Shine ESP](https://github.com/balkian/shinesp): control an ws2812b LED strip over the network with an ESP8266. +* [Bitter](https://github.com/balkian/bitter): a wrapper and CLI over the (now defunct) Twitter API to researchers to download Twitter data much faster using multiple accounts. * [Marl](http://gsi.dit.upm.es/ontologies/marl): I updated this ontology, originally created by Adam Westerski, to make it compatible with the W3C's provenance ontology. * [Hermes](http://github.com/balkian/hermes): one of my first projects, developed together with David Pérez as the special custom assignment in one of our courses. Hermes is an affective bot designed to mimic the behavour of humans. It included a plug-in system for its sensors and actuators. The information from its sensors changed its emotional state, which was shown via its actuators. Among others, it could fetch inforation from Twitter or its host system and change the expressions of an external Face made with servo motors or speak via its Text-To-Speech software. For instance, it could detect it was running out of battery, showing a sad face and sending an alerting tweet. You can see it in action in these two youtube videos: [Part 1](http://www.youtube.com/watch?v=KnEYahPD9z4) and [Part 2](http://www.youtube.com/watch?v=lQZldCTPEJc). * [Maia](http://github.com/gsi-upm/maia): the Modular Architecture for Intelligent Agents is an evented agent architecture that aims to update the classical frameworks for intelligent agents with the concepts emerged from the Live Web. diff --git a/content/page/search/index.md b/content/page/search/index.md new file mode 100644 index 0000000..7507b68 --- /dev/null +++ b/content/page/search/index.md @@ -0,0 +1,13 @@ +--- +title: "Search" +slug: "search" +layout: "search" +outputs: + - html + - json +menu: + main: + weight: 3 + params: + icon: search +--- \ No newline at end of file diff --git a/content/post/2019-05-01-surface-go.md b/content/post/2019-05-01-surface-go.md index 7ddb6e3..6a2ffe5 100644 --- a/content/post/2019-05-01-surface-go.md +++ b/content/post/2019-05-01-surface-go.md @@ -1,6 +1,8 @@ --- title: Linux on the Microsoft Surface Go date: 2019-06-01 00:00:01 +categories: + - Linux tags: - linux - surface go diff --git a/content/project/otro.md b/content/project/otro.md deleted file mode 100644 index bc03406..0000000 --- a/content/project/otro.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: just a test -type: page ---- - - -It does nothing diff --git a/content/search.md b/content/search.md deleted file mode 100644 index 0982340..0000000 --- a/content/search.md +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: "Search Results" -layout: "search" -sitemap: - priority : 0.1 ---- - - -This file exists solely to respond to /search URL with the related `search` layout template. - -No content shown here is rendered, all content is based in the template layouts/page/search.html - -Setting a very low sitemap priority will tell search engines this is not important content. - -This implementation uses Fusejs, jquery and mark.js - - -## Initial setup - -Search depends on additional output content type of JSON in config.toml -\``` -[outputs] - home = ["HTML", "JSON"] -\``` - -## Searching additional fileds - -To search additional fields defined in front matter, you must add it in 2 places. - -### Edit layouts/_default/index.JSON -This exposes the values in /index.json -i.e. add `category` -\``` -... - "contents":{{ .Content | plainify | jsonify }} - {{ if .Params.tags }}, - "tags":{{ .Params.tags | jsonify }}{{end}}, - "categories" : {{ .Params.categories | jsonify }}, -... -\``` - -### Edit fuse.js options to Search -`static/js/search.js` -\``` -keys: [ - "title", - "contents", - "tags", - "categories" -] -\``` - -
- diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index 3275ccf..0000000 --- a/deploy.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -echo -e "\033[0;32mDeploying updates to GitHub...\033[0m" - -rm -rf public/* - -# Build the project. -hugo # --cleanDestinationDir also removes .git :/ # if using a theme, replace with `hugo -t ` - -# Go To Public folder -cd public - -# Add changes to git. -git add . - -# Commit changes. -msg="rebuilding site `date`" -if [ $# -eq 1 ] - then msg="$1" -fi - -git commit -m "$msg" - -# Push source and build repos. -git push origin master - -# Come Back up to the Project Root -cd .. - diff --git a/favicon.ico b/favicon.ico deleted file mode 100644 index 6ff5c17..0000000 Binary files a/favicon.ico and /dev/null differ diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..038ef8b --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/CaiJimmy/hugo-theme-stack-starter + +go 1.17 + +require github.com/CaiJimmy/hugo-theme-stack/v3 v3.30.0 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..df9ea52 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/CaiJimmy/hugo-theme-stack/v3 v3.30.0 h1:uITC7EKGyfPjyi3C5At++E0Uu1qQXtqiwMV4pd7LkLs= +github.com/CaiJimmy/hugo-theme-stack/v3 v3.30.0/go.mod h1:IPmCXiIxlFSLFYS0tOmYP6ySLviyeNVSabyvSuaxD+I= diff --git a/layouts/partials/article-list/compact.html b/layouts/partials/article-list/compact.html new file mode 100644 index 0000000..3f122ac --- /dev/null +++ b/layouts/partials/article-list/compact.html @@ -0,0 +1,43 @@ +
+ {{ $showDate := not .Date.IsZero }} + +
+

+ {{- .Title -}} +

+
+ {{ if $showDate }} + + {{ end }} +
+
+ + {{- $image := partialCached "helper/image" (dict "Context" . "Type" "articleList") .RelPermalink "articleList" -}} + {{ if $image.exists }} +
+ {{ if $image.resource }} + {{- $Permalink := $image.resource.RelPermalink -}} + {{- $Width := $image.resource.Width -}} + {{- $Height := $image.resource.Height -}} + + {{- if (default true .Page.Site.Params.imageProcessing.cover.enabled) -}} + {{- $thumbnail := $image.resource.Fill "120x120" -}} + {{- $Permalink = $thumbnail.RelPermalink -}} + {{- $Width = $thumbnail.Width -}} + {{- $Height = $thumbnail.Height -}} + {{- end -}} + + {{ .Title }} + {{ else }} + Featured image of post {{ .Title }} + {{ end }} +
+ {{ end }} +
+
diff --git a/resources/_gen/assets/scss/style.scss_77b10c8e87ff110a62c52933fe3f7f11.content b/resources/_gen/assets/scss/style.scss_77b10c8e87ff110a62c52933fe3f7f11.content new file mode 100644 index 0000000..9b90269 --- /dev/null +++ b/resources/_gen/assets/scss/style.scss_77b10c8e87ff110a62c52933fe3f7f11.content @@ -0,0 +1,10 @@ +/*!* Hugo Theme Stack +* +* @author: Jimmy Cai +* @website: https://jimmycai.com +* @link: https://github.com/CaiJimmy/hugo-theme-stack*/:root{--main-top-padding:35px;--body-background:#f5f5fa;--accent-color:#34495e;--accent-color-darker:#2c3e50;--accent-color-text:#fff;--body-text-color:#707070;--tag-border-radius:4px;--section-separation:40px;--scrollbar-thumb:hsl(0, 0%, 85%);--scrollbar-track:var(--body-background)}@media(min-width:1280px){:root{--main-top-padding:50px}}:root[data-scheme=dark]{--body-background:#303030;--accent-color:#ecf0f1;--accent-color-darker:#bdc3c7;--accent-color-text:#000;--body-text-color:rgba(255, 255, 255, 0.7);--scrollbar-thumb:hsl(0, 0%, 40%);--scrollbar-track:var(--body-background)}:root{--sys-font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Droid Sans", "Helvetica Neue";--zh-font-family:"PingFang SC", "Hiragino Sans GB", "Droid Sans Fallback", "Microsoft YaHei";--base-font-family:"Lato", var(--sys-font-family), var(--zh-font-family), sans-serif;--code-font-family:Menlo, Monaco, Consolas, "Courier New", var(--zh-font-family), monospace}:root{--card-background:#fff;--card-background-selected:#eaeaea;--card-text-color-main:#000;--card-text-color-secondary:#747474;--card-text-color-tertiary:#767676;--card-separator-color:rgba(218, 218, 218, 0.5);--card-border-radius:10px;--card-padding:20px;--small-card-padding:25px 20px}@media(min-width:768px){:root{--card-padding:25px}}@media(min-width:1280px){:root{--card-padding:30px}}@media(min-width:768px){:root{--small-card-padding:25px}}:root[data-scheme=dark]{--card-background:#424242;--card-background-selected:rgba(255, 255, 255, 0.16);--card-text-color-main:rgba(255, 255, 255, 0.9);--card-text-color-secondary:rgba(255, 255, 255, 0.7);--card-text-color-tertiary:rgba(255, 255, 255, 0.5);--card-separator-color:rgba(255, 255, 255, 0.12)}:root{--article-font-family:var(--base-font-family);--article-font-size:1.6rem;--article-line-height:1.85}@media(min-width:768px){:root{--article-font-size:1.7rem}}:root{--blockquote-border-size:4px;--blockquote-background-color:rgb(248 248 248);--heading-border-size:4px;--link-background-color:189, 195, 199;--link-background-opacity:0.5;--link-background-opacity-hover:0.7;--pre-background-color:#272822;--pre-text-color:#f8f8f2;--code-background-color:rgba(0, 0, 0, 0.12);--code-text-color:#808080;--table-border-color:#dadada;--tr-even-background-color:#efefee;--kbd-border-color:#dadada}:root[data-scheme=dark]{--code-background-color:#272822;--code-text-color:rgba(255, 255, 255, 0.9);--table-border-color:#717171;--tr-even-background-color:#545454;--blockquote-background-color:rgb(75 75 75)}:root{--shadow-l1:0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);--shadow-l2:0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);--shadow-l3:0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);--shadow-l4:0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), + 0px 0px 1px rgba(0, 0, 0, 0.04)}[data-scheme=light]{--pre-text-color:#272822;--pre-background-color:#fafafa}[data-scheme=light] .chroma{color:#272822;background-color:#fafafa}[data-scheme=light] .chroma .err{color:#960050}[data-scheme=light] .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}[data-scheme=light] .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;display:block}[data-scheme=light] .chroma .lntable>tbody{display:block;width:100%}[data-scheme=light] .chroma .lntable>tbody>tr{display:flex;width:100%}[data-scheme=light] .chroma .lntable>tbody>tr>td:last-child{overflow-x:auto}[data-scheme=light] .chroma .hl{display:block;width:100%;background-color:#ffc}[data-scheme=light] .chroma .lnt{margin-right:.4em;padding:0 .4em;color:#7f7f7f;display:block}[data-scheme=light] .chroma .ln{margin-right:.4em;padding:0 .4em;color:#7f7f7f}[data-scheme=light] .chroma .k{color:#00a8c8}[data-scheme=light] .chroma .kc{color:#00a8c8}[data-scheme=light] .chroma .kd{color:#00a8c8}[data-scheme=light] .chroma .kn{color:#f92672}[data-scheme=light] .chroma .kp{color:#00a8c8}[data-scheme=light] .chroma .kr{color:#00a8c8}[data-scheme=light] .chroma .kt{color:#00a8c8}[data-scheme=light] .chroma .n{color:#111}[data-scheme=light] .chroma .na{color:#75af00}[data-scheme=light] .chroma .nb{color:#111}[data-scheme=light] .chroma .bp{color:#111}[data-scheme=light] .chroma .nc{color:#75af00}[data-scheme=light] .chroma .no{color:#00a8c8}[data-scheme=light] .chroma .nd{color:#75af00}[data-scheme=light] .chroma .ni{color:#111}[data-scheme=light] .chroma .ne{color:#75af00}[data-scheme=light] .chroma .nf{color:#75af00}[data-scheme=light] .chroma .fm{color:#111}[data-scheme=light] .chroma .nl{color:#111}[data-scheme=light] .chroma .nn{color:#111}[data-scheme=light] .chroma .nx{color:#75af00}[data-scheme=light] .chroma .py{color:#111}[data-scheme=light] .chroma .nt{color:#f92672}[data-scheme=light] .chroma .nv{color:#111}[data-scheme=light] .chroma .vc{color:#111}[data-scheme=light] .chroma .vg{color:#111}[data-scheme=light] .chroma .vi{color:#111}[data-scheme=light] .chroma .vm{color:#111}[data-scheme=light] .chroma .l{color:#ae81ff}[data-scheme=light] .chroma .ld{color:#d88200}[data-scheme=light] .chroma .s{color:#d88200}[data-scheme=light] .chroma .sa{color:#d88200}[data-scheme=light] .chroma .sb{color:#d88200}[data-scheme=light] .chroma .sc{color:#d88200}[data-scheme=light] .chroma .dl{color:#d88200}[data-scheme=light] .chroma .sd{color:#d88200}[data-scheme=light] .chroma .s2{color:#d88200}[data-scheme=light] .chroma .se{color:#ae81ff}[data-scheme=light] .chroma .sh{color:#d88200}[data-scheme=light] .chroma .si{color:#d88200}[data-scheme=light] .chroma .sx{color:#d88200}[data-scheme=light] .chroma .sr{color:#d88200}[data-scheme=light] .chroma .s1{color:#d88200}[data-scheme=light] .chroma .ss{color:#d88200}[data-scheme=light] .chroma .m{color:#ae81ff}[data-scheme=light] .chroma .mb{color:#ae81ff}[data-scheme=light] .chroma .mf{color:#ae81ff}[data-scheme=light] .chroma .mh{color:#ae81ff}[data-scheme=light] .chroma .mi{color:#ae81ff}[data-scheme=light] .chroma .il{color:#ae81ff}[data-scheme=light] .chroma .mo{color:#ae81ff}[data-scheme=light] .chroma .o{color:#f92672}[data-scheme=light] .chroma .ow{color:#f92672}[data-scheme=light] .chroma .p{color:#111}[data-scheme=light] .chroma .c{color:#75715e}[data-scheme=light] .chroma .ch{color:#75715e}[data-scheme=light] .chroma .cm{color:#75715e}[data-scheme=light] .chroma .c1{color:#75715e}[data-scheme=light] .chroma .cs{color:#75715e}[data-scheme=light] .chroma .cp{color:#75715e}[data-scheme=light] .chroma .cpf{color:#75715e}[data-scheme=light] .chroma .gd{color:#f92672}[data-scheme=light] .chroma .ge{font-style:italic}[data-scheme=light] .chroma .gi{color:#75af00}[data-scheme=light] .chroma .gs{font-weight:700}[data-scheme=light] .chroma .gu{color:#75715e}[data-scheme=dark]{--pre-text-color:#f8f8f2;--pre-background-color:#272822}[data-scheme=dark] .chroma{color:#f8f8f2;background-color:#272822}[data-scheme=dark] .chroma .err{color:#bb0064}[data-scheme=dark] .chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}[data-scheme=dark] .chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:100%;display:block}[data-scheme=dark] .chroma .lntable>tbody{display:block;width:100%}[data-scheme=dark] .chroma .lntable>tbody>tr{display:flex;width:100%}[data-scheme=dark] .chroma .lntable>tbody>tr>td:last-child{overflow-x:auto}[data-scheme=dark] .chroma .hl{display:block;width:100%;background-color:#ffc}[data-scheme=dark] .chroma .lnt{margin-right:.4em;padding:0 .4em;color:#7f7f7f;display:block}[data-scheme=dark] .chroma .ln{margin-right:.4em;padding:0 .4em;color:#7f7f7f}[data-scheme=dark] .chroma .k{color:#66d9ef}[data-scheme=dark] .chroma .kc{color:#66d9ef}[data-scheme=dark] .chroma .kd{color:#66d9ef}[data-scheme=dark] .chroma .kn{color:#f92672}[data-scheme=dark] .chroma .kp{color:#66d9ef}[data-scheme=dark] .chroma .kr{color:#66d9ef}[data-scheme=dark] .chroma .kt{color:#66d9ef}[data-scheme=dark] .chroma .n{color:#f8f8f2}[data-scheme=dark] .chroma .na{color:#a6e22e}[data-scheme=dark] .chroma .nb{color:#f8f8f2}[data-scheme=dark] .chroma .bp{color:#f8f8f2}[data-scheme=dark] .chroma .nc{color:#a6e22e}[data-scheme=dark] .chroma .no{color:#66d9ef}[data-scheme=dark] .chroma .nd{color:#a6e22e}[data-scheme=dark] .chroma .ni{color:#f8f8f2}[data-scheme=dark] .chroma .ne{color:#a6e22e}[data-scheme=dark] .chroma .nf{color:#a6e22e}[data-scheme=dark] .chroma .fm{color:#f8f8f2}[data-scheme=dark] .chroma .nl{color:#f8f8f2}[data-scheme=dark] .chroma .nn{color:#f8f8f2}[data-scheme=dark] .chroma .nx{color:#a6e22e}[data-scheme=dark] .chroma .py{color:#f8f8f2}[data-scheme=dark] .chroma .nt{color:#f92672}[data-scheme=dark] .chroma .nv{color:#f8f8f2}[data-scheme=dark] .chroma .vc{color:#f8f8f2}[data-scheme=dark] .chroma .vg{color:#f8f8f2}[data-scheme=dark] .chroma .vi{color:#f8f8f2}[data-scheme=dark] .chroma .vm{color:#f8f8f2}[data-scheme=dark] .chroma .l{color:#ae81ff}[data-scheme=dark] .chroma .ld{color:#e6db74}[data-scheme=dark] .chroma .s{color:#e6db74}[data-scheme=dark] .chroma .sa{color:#e6db74}[data-scheme=dark] .chroma .sb{color:#e6db74}[data-scheme=dark] .chroma .sc{color:#e6db74}[data-scheme=dark] .chroma .dl{color:#e6db74}[data-scheme=dark] .chroma .sd{color:#e6db74}[data-scheme=dark] .chroma .s2{color:#e6db74}[data-scheme=dark] .chroma .se{color:#ae81ff}[data-scheme=dark] .chroma .sh{color:#e6db74}[data-scheme=dark] .chroma .si{color:#e6db74}[data-scheme=dark] .chroma .sx{color:#e6db74}[data-scheme=dark] .chroma .sr{color:#e6db74}[data-scheme=dark] .chroma .s1{color:#e6db74}[data-scheme=dark] .chroma .ss{color:#e6db74}[data-scheme=dark] .chroma .m{color:#ae81ff}[data-scheme=dark] .chroma .mb{color:#ae81ff}[data-scheme=dark] .chroma .mf{color:#ae81ff}[data-scheme=dark] .chroma .mh{color:#ae81ff}[data-scheme=dark] .chroma .mi{color:#ae81ff}[data-scheme=dark] .chroma .il{color:#ae81ff}[data-scheme=dark] .chroma .mo{color:#ae81ff}[data-scheme=dark] .chroma .o{color:#f92672}[data-scheme=dark] .chroma .ow{color:#f92672}[data-scheme=dark] .chroma .p{color:#f8f8f2}[data-scheme=dark] .chroma .c{color:#75715e}[data-scheme=dark] .chroma .ch{color:#75715e}[data-scheme=dark] .chroma .cm{color:#75715e}[data-scheme=dark] .chroma .c1{color:#75715e}[data-scheme=dark] .chroma .cs{color:#75715e}[data-scheme=dark] .chroma .cp{color:#75715e}[data-scheme=dark] .chroma .cpf{color:#75715e}[data-scheme=dark] .chroma .gd{color:#f92672}[data-scheme=dark] .chroma .ge{font-style:italic}[data-scheme=dark] .chroma .gi{color:#a6e22e}[data-scheme=dark] .chroma .gs{font-weight:700}[data-scheme=dark] .chroma .gu{color:#75715e}:root{--menu-icon-separation:40px;--container-padding:15px;--widget-separation:var(--section-separation)}.container{margin-left:auto;margin-right:auto}.container .left-sidebar{order:-3;max-width:var(--left-sidebar-max-width)}.container .right-sidebar{order:-1;max-width:var(--right-sidebar-max-width)}@media(min-width:1024px){.container .right-sidebar{display:flex}}@media(min-width:768px){.container.extended{max-width:1024px;--left-sidebar-max-width:25%;--right-sidebar-max-width:30%}}@media(min-width:1024px){.container.extended{max-width:1280px;--left-sidebar-max-width:20%;--right-sidebar-max-width:30%}}@media(min-width:1280px){.container.extended{max-width:1536px;--left-sidebar-max-width:15%;--right-sidebar-max-width:25%}}@media(min-width:768px){.container.compact{--left-sidebar-max-width:25%;max-width:768px}}@media(min-width:1024px){.container.compact{max-width:1024px;--left-sidebar-max-width:20%}}@media(min-width:1280px){.container.compact{max-width:1280px}}.flex{display:flex;flex-direction:row}.flex.column{flex-direction:column}.flex.on-phone--column{flex-direction:column}@media(min-width:768px){.flex.on-phone--column{flex-direction:unset}}.flex .full-width{width:100%}main.main{order:-2;min-width:0;max-width:100%;flex-grow:1;display:flex;flex-direction:column;gap:var(--section-separation)}@media(min-width:768px){main.main{padding-top:var(--main-top-padding)}}.main-container{min-height:100vh;align-items:flex-start;padding:0 15px;gap:var(--section-separation);padding-top:var(--main-top-padding)}@media(min-width:768px){.main-container{padding:0 20px}}/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}/*!* Hamburgers +* @description Tasty CSS-animated hamburgers +* @author Jonathan Suh @jonsuh +* @site https://jonsuh.com/hamburgers +* @link https://github.com/jonsuh/hamburgers*/.hamburger{padding-top:10px;display:inline-block;cursor:pointer;transition-property:opacity,filter;transition-duration:.15s;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible}.hamburger:hover{opacity:.7}.hamburger.is-active:hover{opacity:.7}.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner::before,.hamburger.is-active .hamburger-inner::after{background-color:#000}.hamburger-box{width:30px;height:24px;display:inline-block;position:relative}.hamburger-inner{display:block;top:50%;margin-top:-2px}.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after{width:30px;height:2px;background-color:var(--card-text-color-main);border-radius:4px;position:absolute;transition-property:transform;transition-duration:.15s;transition-timing-function:ease}.hamburger-inner::before,.hamburger-inner::after{content:"";display:block}.hamburger-inner::before{top:-10px}.hamburger-inner::after{bottom:-10px}.hamburger--spin .hamburger-inner{transition-duration:.22s;transition-timing-function:cubic-bezier(.55,.055,.675,.19)}.hamburger--spin .hamburger-inner::before{transition:top .1s .25s ease-in,opacity .1s ease-in}.hamburger--spin .hamburger-inner::after{transition:bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19)}.hamburger--spin.is-active .hamburger-inner{transform:rotate(225deg);transition-delay:.12s;transition-timing-function:cubic-bezier(.215,.61,.355,1)}.hamburger--spin.is-active .hamburger-inner::before{top:0;opacity:0;transition:top .1s ease-out,opacity .1s .12s ease-out}.hamburger--spin.is-active .hamburger-inner::after{bottom:0;transform:rotate(-90deg);transition:bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1)}#toggle-menu{background:0 0;border:none;position:absolute;right:0;top:0;z-index:2;cursor:pointer;outline:none}[dir=rtl] #toggle-menu{left:0;right:auto}@media(min-width:768px){#toggle-menu{display:none}}#toggle-menu.is-active .hamburger-inner,#toggle-menu.is-active .hamburger-inner::before,#toggle-menu.is-active .hamburger-inner::after{background-color:var(--accent-color)}#main-menu{list-style:none;overflow-y:auto;flex-grow:1;font-size:1.4rem;background-color:var(--card-background);box-shadow:var(--shadow-l1);display:none;margin:0 calc(var(--container-padding) * -1);padding:30px}@media(min-width:1280px){#main-menu{padding:15px 0}}#main-menu,#main-menu .menu-bottom-section ol{flex-direction:column;gap:30px}@media(min-width:1280px){#main-menu,#main-menu .menu-bottom-section ol{gap:25px}}#main-menu.show{display:flex}@media(min-width:768px){#main-menu{align-items:flex-end;display:flex;background-color:transparent;padding:0;box-shadow:none;margin:0}}#main-menu li{position:relative;vertical-align:middle;padding:0}@media(min-width:768px){#main-menu li{width:100%}}#main-menu li svg{stroke:currentColor;stroke-width:1.33;width:20px;height:20px}#main-menu li a{height:100%;display:inline-flex;align-items:center;color:var(--body-text-color);gap:var(--menu-icon-separation)}#main-menu li span{flex:1}#main-menu li.current a{color:var(--accent-color);font-weight:700}#main-menu li.menu-bottom-section{margin-top:auto}#main-menu li.menu-bottom-section ol{display:flex;padding-left:0}.menu-social{list-style:none;padding:0;margin:0;display:flex;flex-direction:row;gap:10px}.menu-social svg{width:24px;height:24px;stroke:var(--body-text-color);stroke-width:1.33}.article-list{display:flex;flex-direction:column;gap:var(--section-separation)}.article-list article{display:flex;flex-direction:column;background-color:var(--card-background);box-shadow:var(--shadow-l1);border-radius:var(--card-border-radius);overflow:hidden;transition:box-shadow .3s ease}.article-list article:hover{box-shadow:var(--shadow-l2)}.article-list article .article-image img{width:100%;height:150px;object-fit:cover}@media(min-width:768px){.article-list article .article-image img{height:200px}}@media(min-width:1280px){.article-list article .article-image img{height:250px}}.article-list article:nth-child(5n+1) .article-category a{background:#8ea885;color:#fff}.article-list article:nth-child(5n+2) .article-category a{background:#df7988;color:#fff}.article-list article:nth-child(5n+3) .article-category a{background:#0177b8;color:#fff}.article-list article:nth-child(5n+4) .article-category a{background:#ffb900;color:#fff}.article-list article:nth-child(5n+5) .article-category a{background:#6b69d6;color:#fff}.article-details{display:flex;flex-direction:column;justify-content:center;padding:var(--card-padding);gap:15px}.article-title{font-family:var(--article-font-family);font-weight:600;margin:0;color:var(--card-text-color-main);font-size:2.2rem}@media(min-width:1280px){.article-title{font-size:2.4rem}}.article-title a{color:var(--card-text-color-main)}.article-title a:hover{color:var(--card-text-color-main)}.article-subtitle{font-weight:400;color:var(--card-text-color-secondary);line-height:1.5;margin:0;font-size:1.75rem}@media(min-width:1280px){.article-subtitle{font-size:2rem}}.article-title-wrapper{display:flex;flex-direction:column;gap:8px}.article-time,.article-translations{display:flex;color:var(--card-text-color-tertiary);gap:15px}.article-time svg,.article-translations svg{vertical-align:middle;width:20px;height:20px;stroke-width:1.33;flex-shrink:0}.article-time time,.article-time a,.article-translations time,.article-translations a{font-size:1.4rem;color:var(--card-text-color-tertiary)}.article-time>div,.article-translations>div{display:inline-flex;align-items:center;gap:15px}.article-time{flex-wrap:wrap}.article-translations>div{flex-wrap:wrap}.article-category,.article-tags{display:flex;gap:10px;flex-wrap:wrap}.article-category a,.article-tags a{color:var(--accent-color-text);background-color:var(--accent-color);padding:8px 16px;border-radius:var(--tag-border-radius);display:inline-block;font-size:1.4rem;transition:background-color .5s ease}.article-category a:hover,.article-tags a:hover{color:var(--accent-color-text);background-color:var(--accent-color-darker)}.article-list--compact{border-radius:var(--card-border-radius);box-shadow:var(--shadow-l1);background-color:var(--card-background);--image-size:50px}@media(min-width:768px){.article-list--compact{--image-size:60px}}.article-list--compact article>a{display:flex;align-items:center;padding:var(--small-card-padding);gap:15px}.article-list--compact article:not(:last-of-type){border-bottom:1.5px solid var(--card-separator-color)}.article-list--compact article .article-details{flex-grow:1;padding:0;min-height:var(--image-size);gap:10px}.article-list--compact article .article-title{margin:0;font-size:1.6rem}@media(min-width:768px){.article-list--compact article .article-title{font-size:1.8rem}}.article-list--compact article .article-image img{width:var(--image-size);height:var(--image-size);object-fit:cover}.article-list--compact article .article-time{font-size:1.4rem}.article-list--compact article .article-preview{font-size:1.4rem;color:var(--card-text-color-tertiary);margin-top:10px;line-height:1.5}.article-list--tile article{border-radius:var(--card-border-radius);overflow:hidden;position:relative;height:350px;width:250px;box-shadow:var(--shadow-l1);transition:box-shadow .3s ease;background-color:var(--card-background)}.article-list--tile article:hover{box-shadow:var(--shadow-l2)}.article-list--tile article.has-image .article-details{background-color:rgba(0,0,0,.25)}.article-list--tile article.has-image .article-title{color:#fff}.article-list--tile article .article-image{position:absolute;top:0;left:0;width:100%;height:100%}.article-list--tile article .article-image img{width:100%;height:100%;object-fit:cover}.article-list--tile article .article-details{border-radius:var(--card-border-radius);position:relative;height:100%;width:100%;display:flex;flex-direction:column;justify-content:flex-end;z-index:2;padding:15px}@media(min-width:640px){.article-list--tile article .article-details{padding:20px}}.article-list--tile article .article-title{font-size:2rem;font-weight:500;color:var(--card-text-color-main)}@media(min-width:640px){.article-list--tile article .article-title{font-size:2.2rem}}.widget{display:flex;flex-direction:column}.widget .widget-icon svg{width:32px;height:32px;stroke-width:1.6;color:var(--body-text-color)}.tagCloud .tagCloud-tags{display:flex;flex-wrap:wrap;gap:10px}.tagCloud .tagCloud-tags a{background:var(--card-background);box-shadow:var(--shadow-l1);border-radius:var(--tag-border-radius);padding:8px 20px;color:var(--card-text-color-main);font-size:1.4rem;transition:box-shadow .3s ease}.tagCloud .tagCloud-tags a:hover{box-shadow:var(--shadow-l2)}.widget.archives .widget-archive--list{border-radius:var(--card-border-radius);box-shadow:var(--shadow-l1);background-color:var(--card-background)}.widget.archives .archives-year:not(:last-of-type){border-bottom:1.5px solid var(--card-separator-color)}.widget.archives .archives-year a{font-size:1.4rem;padding:18px 25px;display:flex}.widget.archives .archives-year a span.year{flex:1;color:var(--card-text-color-main);font-weight:700}.widget.archives .archives-year a span.count{color:var(--card-text-color-tertiary)}footer.site-footer{padding:20px 0 var(--section-separation);font-size:1.4rem;line-height:1.75}footer.site-footer:before{content:"";display:block;height:3px;width:50px;background:var(--body-text-color);margin-bottom:20px}footer.site-footer .copyright{color:var(--accent-color);font-weight:700;margin-bottom:5px}footer.site-footer .powerby{color:var(--body-text-color);font-weight:400;font-size:1.2rem}footer.site-footer .powerby a{color:var(--body-text-color)}.pagination{display:flex;background-color:var(--card-background);box-shadow:var(--shadow-l1);border-radius:var(--card-border-radius);overflow:hidden;flex-wrap:wrap}.pagination .page-link{padding:16px 32px;display:inline-flex;color:var(--card-text-color-secondary)}.pagination .page-link.current{font-weight:700;background-color:var(--card-background-selected);color:var(--card-text-color-main)}@media(min-width:768px){.sidebar.sticky{position:sticky}}.left-sidebar{display:flex;flex-direction:column;flex-shrink:0;align-self:stretch;gap:var(--sidebar-element-separation);max-width:none;width:100%;position:relative;--sidebar-avatar-size:100px;--sidebar-element-separation:20px;--emoji-size:40px;--emoji-font-size:20px}@media(min-width:768px){.left-sidebar{width:auto;padding-top:var(--main-top-padding);padding-bottom:var(--main-top-padding);max-height:100vh}}@media(min-width:1536px){.left-sidebar{--sidebar-avatar-size:120px;--sidebar-element-separation:25px;--emoji-size:40px}}.left-sidebar.sticky{top:0}.left-sidebar.compact{--sidebar-avatar-size:80px;--emoji-size:30px;--emoji-font-size:15px}@media(min-width:1024px){.left-sidebar.compact header{flex-direction:row}}.left-sidebar.compact header .site-meta{gap:5px}.left-sidebar.compact header .site-name{font-size:1.4rem}@media(min-width:1536px){.left-sidebar.compact header .site-name{font-size:1.75rem}}.left-sidebar.compact header .site-description{font-size:1.4rem}.right-sidebar{width:100%;display:none;flex-direction:column;gap:var(--widget-separation)}.right-sidebar.sticky{top:0}@media(min-width:1024px){.right-sidebar{padding-top:var(--main-top-padding);padding-bottom:var(--main-top-padding)}}.sidebar header{z-index:1;transition:box-shadow .5s ease;display:flex;flex-direction:column;gap:var(--sidebar-element-separation)}@media(min-width:768px){.sidebar header{padding:0}}.sidebar header .site-avatar{position:relative;margin:0;width:var(--sidebar-avatar-size);height:var(--sidebar-avatar-size);flex-shrink:0}.sidebar header .site-avatar .site-logo{width:100%;height:100%;border-radius:100%;box-shadow:var(--shadow-l1)}.sidebar header .site-avatar .emoji{position:absolute;width:var(--emoji-size);height:var(--emoji-size);line-height:var(--emoji-size);border-radius:100%;bottom:0;right:0;text-align:center;font-size:var(--emoji-font-size);background-color:var(--card-background);box-shadow:var(--shadow-l2)}.sidebar header .site-meta{display:flex;flex-direction:column;gap:10px;justify-content:center}.sidebar header .site-name{color:var(--accent-color);margin:0;font-size:1.6rem}@media(min-width:1536px){.sidebar header .site-name{font-size:1.8rem}}.sidebar header .site-description{color:var(--body-text-color);font-weight:400;margin:0;font-size:1.4rem}@media(min-width:1536px){.sidebar header .site-description{font-size:1.6rem}}[data-scheme=dark] #dark-mode-toggle{color:var(--accent-color);font-weight:700}[data-scheme=dark] #dark-mode-toggle .icon-tabler-toggle-left{display:none}[data-scheme=dark] #dark-mode-toggle .icon-tabler-toggle-right{display:unset}#dark-mode-toggle{margin-top:auto;color:var(--body-text-color);display:flex;align-items:center;cursor:pointer;gap:var(--menu-icon-separation)}#dark-mode-toggle .icon-tabler-toggle-right{display:none}#i18n-switch{color:var(--body-text-color);display:inline-flex;align-content:center;gap:var(--menu-icon-separation)}#i18n-switch select{border:0;background-color:transparent;color:var(--body-text-color)}#i18n-switch select option{color:var(--card-text-color-main);background-color:var(--card-background)}html{font-size:62.5%;overflow-y:scroll}*{box-sizing:border-box}body{background:var(--body-background);margin:0;font-family:var(--base-font-family);font-size:1.6rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*{scrollbar-width:auto;scrollbar-color:var(--scrollbar-thumb)transparent}::-webkit-scrollbar{height:auto}::-webkit-scrollbar-thumb{background-color:var(--scrollbar-thumb)}::-webkit-scrollbar-track{background-color:transparent}.article-page.hide-sidebar-sm .left-sidebar{display:none}@media(min-width:768px){.article-page.hide-sidebar-sm .left-sidebar{display:inherit}}.article-page .main-article{background:var(--card-background);border-radius:var(--card-border-radius);box-shadow:var(--shadow-l1);overflow:hidden}.article-page .main-article .article-header .article-image img{height:auto;width:100%;max-height:50vh;object-fit:cover}.article-page .main-article .article-header .article-details{padding:var(--card-padding);padding-bottom:0}.article-page .main-article .article-content{margin:var(--card-padding)0;color:var(--card-text-color-main)}.article-page .main-article .article-content .footnotes{font-family:var(--base-font-family)}.article-page .main-article .article-content img{max-width:100%;height:auto}.article-page .main-article .article-footer{margin:var(--card-padding);margin-top:0}.article-page .main-article .article-footer section:not(:first-child){margin-top:var(--card-padding)}.article-page .main-article .article-footer section{color:var(--card-text-color-tertiary);text-transform:uppercase;display:flex;align-items:center;font-size:1.4rem;gap:15px}.article-page .main-article .article-footer section svg{width:20px;height:20px;stroke-width:1.33}.article-page .main-article .article-footer .article-tags{text-transform:unset}.article-page .main-article .article-footer .article-copyright a,.article-page .main-article .article-footer .article-lastmod a{color:var(--body-text-color)}.article-page .main-article .article-footer .article-copyright a.link,.article-page .main-article .article-footer .article-lastmod a.link{box-shadow:unset}.widget--toc{background-color:var(--card-background);border-radius:var(--card-border-radius);box-shadow:var(--shadow-l1);display:flex;flex-direction:column;color:var(--card-text-color-main);overflow:hidden}.widget--toc ::-webkit-scrollbar-thumb{background-color:var(--card-separator-color)}.widget--toc #TableOfContents{overflow-x:auto;max-height:75vh}.widget--toc #TableOfContents ol,.widget--toc #TableOfContents ul{margin:0;padding:0}.widget--toc #TableOfContents ol{list-style-type:none;counter-reset:item}.widget--toc #TableOfContents ol li a:first-of-type::before{counter-increment:item;content:counters(item,".")". ";font-weight:700;margin-right:5px}.widget--toc #TableOfContents>ul{padding:0 1em}.widget--toc #TableOfContents li{margin:15px 0 15px 20px;padding:5px}.widget--toc #TableOfContents li>ol,.widget--toc #TableOfContents li>ul{margin-top:10px;padding-left:10px;margin-bottom:-5px}.widget--toc #TableOfContents li>ol>li:last-child,.widget--toc #TableOfContents li>ul>li:last-child{margin-bottom:0}.widget--toc #TableOfContents li.active-class>a{border-left:var(--heading-border-size)solid var(--accent-color);font-weight:700}.widget--toc #TableOfContents ul li.active-class>a{display:block}.widget--toc #TableOfContents>ul>li.active-class>a{margin-left:calc(-25px - 1em);padding-left:calc(25px + 1em - var(--heading-border-size))}.widget--toc #TableOfContents>ol>li.active-class>a{margin-left:calc(-9px - 1em);padding-left:calc(9px + 1em - var(--heading-border-size));display:block}.widget--toc #TableOfContents>ul>li>ul>li.active-class>a{margin-left:calc(-60px - 1em);padding-left:calc(60px + 1em - var(--heading-border-size))}.widget--toc #TableOfContents>ol>li>ol>li.active-class>a{margin-left:calc(-44px - 1em);padding-left:calc(44px + 1em - var(--heading-border-size));display:block}.widget--toc #TableOfContents>ul>li>ul>li>ul>li.active-class>a{margin-left:calc(-95px - 1em);padding-left:calc(95px + 1em - var(--heading-border-size))}.widget--toc #TableOfContents>ol>li>ol>li>ol>li.active-class>a{margin-left:calc(-79px - 1em);padding-left:calc(79px + 1em - var(--heading-border-size));display:block}.widget--toc #TableOfContents>ul>li>ul>li>ul>li>ul>li.active-class>a{margin-left:calc(-130px - 1em);padding-left:calc(130px + 1em - var(--heading-border-size))}.widget--toc #TableOfContents>ol>li>ol>li>ol>li>ol>li.active-class>a{margin-left:calc(-114px - 1em);padding-left:calc(114px + 1em - var(--heading-border-size));display:block}.widget--toc #TableOfContents>ul>li>ul>li>ul>li>ul>li>ul>li.active-class>a{margin-left:calc(-165px - 1em);padding-left:calc(165px + 1em - var(--heading-border-size))}.widget--toc #TableOfContents>ol>li>ol>li>ol>li>ol>li>ol>li.active-class>a{margin-left:calc(-149px - 1em);padding-left:calc(149px + 1em - var(--heading-border-size));display:block}.related-content{overflow-x:auto;padding-bottom:15px}.related-content>.flex{float:left}.related-content article{margin-right:15px;flex-shrink:0;overflow:hidden;width:250px;height:150px}.related-content article .article-title{font-size:1.8rem;margin:0}.related-content article.has-image .article-details{padding:20px;background:linear-gradient(0deg,rgba(0,0,0,.25) 0%,rgba(0,0,0,.75) 100%)}.article-content{font-family:var(--article-font-family);font-size:var(--article-font-size);padding:0 var(--card-padding);line-height:var(--article-line-height)}.article-content>p{margin:1.5em 0}.article-content h1,.article-content h2,.article-content h3,.article-content h4,.article-content h5,.article-content h6{margin-inline-start:calc((var(--card-padding)) * -1);padding-inline-start:calc(var(--card-padding) - var(--heading-border-size));border-inline-start:var(--heading-border-size)solid var(--accent-color);position:relative}.article-content h1 a.header-anchor,.article-content h2 a.header-anchor,.article-content h3 a.header-anchor,.article-content h4 a.header-anchor,.article-content h5 a.header-anchor,.article-content h6 a.header-anchor{transition:opacity .3s ease;opacity:0;position:absolute;left:0;width:var(--card-padding);text-align:center;color:var(--accent-color)}.article-content h1 a.header-anchor:before,.article-content h2 a.header-anchor:before,.article-content h3 a.header-anchor:before,.article-content h4 a.header-anchor:before,.article-content h5 a.header-anchor:before,.article-content h6 a.header-anchor:before{content:"#"}.article-content h1:hover a.header-anchor,.article-content h1:focus a.header-anchor,.article-content h2:hover a.header-anchor,.article-content h2:focus a.header-anchor,.article-content h3:hover a.header-anchor,.article-content h3:focus a.header-anchor,.article-content h4:hover a.header-anchor,.article-content h4:focus a.header-anchor,.article-content h5:hover a.header-anchor,.article-content h5:focus a.header-anchor,.article-content h6:hover a.header-anchor,.article-content h6:focus a.header-anchor{opacity:1}.article-content figure{text-align:center}.article-content figure figcaption{font-size:1.4rem;color:var(--card-text-color-secondary)}.article-content blockquote{position:relative;margin:1.5em 0;border-inline-start:var(--blockquote-border-size)solid var(--card-separator-color);padding:15px calc(var(--card-padding) - var(--blockquote-border-size));background-color:var(--blockquote-background-color)}.article-content blockquote .cite{display:block;text-align:right;font-size:.75em}.article-content blockquote .cite a{text-decoration:underline}.article-content hr{width:100px;margin:40px auto;background:var(--card-text-color-tertiary);height:2px;border:0;opacity:.55}.article-content code{color:var(--code-text-color);background-color:var(--code-background-color);padding:2px 4px;border-radius:var(--tag-border-radius);font-family:var(--code-font-family)}.article-content a,.article-content code{word-break:break-word}.article-content .gallery{position:relative;display:flex;flex-direction:row;justify-content:center;margin:1.5em 0;gap:10px}.article-content .gallery figure{margin:0}.article-content pre{overflow-x:auto;display:block;background-color:var(--pre-background-color);color:var(--pre-text-color);font-family:var(--code-font-family);line-height:1.428571429;word-break:break-all;padding:var(--card-padding)}[dir=rtl] .article-content pre{direction:ltr}.article-content pre code{color:unset;border:none;background:0 0;padding:0}.article-content .highlight{background-color:var(--pre-background-color);padding:var(--card-padding);position:relative}.article-content .highlight:hover .copyCodeButton{opacity:1}[dir=rtl] .article-content .highlight{direction:ltr}.article-content .highlight pre{margin:initial;padding:0;margin:0;width:auto}.article-content .copyCodeButton{position:absolute;top:calc(var(--card-padding));right:calc(var(--card-padding));background:var(--card-background);border:none;box-shadow:var(--shadow-l2);border-radius:var(--tag-border-radius);padding:8px 16px;color:var(--card-text-color-main);cursor:pointer;font-size:14px;opacity:0;transition:opacity .3s ease}.article-content .table-wrapper{padding:0 var(--card-padding);overflow-x:auto;display:block}.article-content table{width:100%;border-collapse:collapse;border-spacing:0;margin-bottom:1.5em;font-size:.96em}.article-content th,.article-content td{text-align:left;padding:4px 8px 4px 10px;border:1px solid var(--table-border-color)}.article-content td{vertical-align:top}.article-content tr:nth-child(even){background-color:var(--tr-even-background-color)}.article-content .twitter-tweet{color:var(--card-text-color-main)}.article-content .video-wrapper{position:relative;width:100%;height:0;padding-bottom:56.25%;overflow:hidden}.article-content .video-wrapper>iframe,.article-content .video-wrapper>video{position:absolute;width:100%;height:100%;left:0;top:0;border:0}.article-content .gitlab-embed-snippets{margin:0!important}.article-content .gitlab-embed-snippets .file-holder.snippet-file-content{margin-block-end:0!important;margin-block-start:0!important;margin-left:calc((var(--card-padding)) * -1)!important;margin-right:calc((var(--card-padding)) * -1)!important;padding:0 var(--card-padding)!important}.article-content blockquote,.article-content figure,.article-content .highlight,.article-content pre,.article-content .gallery,.article-content .video-wrapper,.article-content .table-wrapper,.article-content .s_video_simple{margin-left:calc((var(--card-padding)) * -1);margin-right:calc((var(--card-padding)) * -1);width:calc(100% + var(--card-padding) * 2)}.article-content .katex-display>.katex{overflow-x:auto;overflow-y:hidden}.article-content kbd{border:1px solid var(--kbd-border-color);font-weight:700;font-size:.9em;line-height:1;padding:2px 4px;border-radius:4px;display:inline-block}.section-card{border-radius:var(--card-border-radius);background-color:var(--card-background);padding:var(--small-card-padding);box-shadow:var(--shadow-l1);display:flex;align-items:center;gap:20px;--separation:15px}.section-card .section-term{font-size:2.2rem;margin:0;color:var(--card-text-color-main)}.section-card .section-description{font-weight:400;color:var(--card-text-color-secondary);font-size:1.6rem;margin:0}.section-card .section-details{flex-grow:1;display:flex;flex-direction:column;gap:8px}.section-card .section-image img{width:60px;height:60px}.section-card .section-count{color:var(--card-text-color-tertiary);font-size:1.4rem;margin:0;font-weight:700;text-transform:uppercase}.subsection-list{overflow-x:auto}.subsection-list .article-list--tile{display:flex;padding-bottom:15px}.subsection-list .article-list--tile article{width:250px;height:150px;margin-right:20px;flex-shrink:0}.subsection-list .article-list--tile article .article-title{margin:0;font-size:1.8rem}.subsection-list .article-list--tile article .article-details{padding:20px}.not-found-card{background-color:var(--card-background);box-shadow:var(--shadow-l1);border-radius:var(--card-border-radius);padding:var(--card-padding)}.search-form{position:relative;--button-size:80px}.search-form.widget{--button-size:60px}.search-form.widget label{font-size:1.3rem;top:10px}.search-form.widget input{font-size:1.5rem;padding:30px 20px 15px}.search-form p{position:relative;margin:0}.search-form label{position:absolute;top:15px;inset-inline-start:20px;font-size:1.4rem;color:var(--card-text-color-tertiary)}.search-form input{padding:40px 20px 20px;border-radius:var(--card-border-radius);background-color:var(--card-background);box-shadow:var(--shadow-l1);color:var(--card-text-color-main);width:100%;border:0;-webkit-appearance:none;transition:box-shadow .3s ease;font-size:1.8rem}.search-form input:focus{outline:0;box-shadow:var(--shadow-l2)}.search-form button{position:absolute;inset-inline-end:0;top:0;height:100%;width:var(--button-size);cursor:pointer;background-color:transparent;border:0;padding:0 10px}.search-form button:focus{outline:0}.search-form button:focus svg{stroke-width:2;color:var(--accent-color)}.search-form button svg{color:var(--card-text-color-secondary);stroke-width:1.33;transition:all .3s ease;width:20px;height:20px}a{text-decoration:none;color:var(--accent-color)}a:hover{color:var(--accent-color-darker)}a.link{box-shadow:0 -2px rgba(var(--link-background-color),var(--link-background-opacity))inset;transition:all .3s ease}a.link:hover{box-shadow:0 calc(-1rem * var(--article-line-height))rgba(var(--link-background-color),var(--link-background-opacity-hover))inset}.section-title{text-transform:uppercase;margin-top:0;margin-bottom:10px;display:block;font-size:1.6rem;font-weight:700;color:var(--body-text-color)}.section-title a{color:var(--body-text-color)} \ No newline at end of file diff --git a/resources/_gen/assets/scss/style.scss_77b10c8e87ff110a62c52933fe3f7f11.json b/resources/_gen/assets/scss/style.scss_77b10c8e87ff110a62c52933fe3f7f11.json new file mode 100644 index 0000000..7d2227f --- /dev/null +++ b/resources/_gen/assets/scss/style.scss_77b10c8e87ff110a62c52933fe3f7f11.json @@ -0,0 +1 @@ +{"Target":"/scss/style.min.663803bebe609202d5b39d848f2d7c2dc8b598a2d879efa079fa88893d29c49c.css","MediaType":"text/css","Data":{"Integrity":"sha256-ZjgDvr5gkgLVs52Ejy18Lci1mKLYee+gefqIiT0pxJw="}} \ No newline at end of file diff --git a/resources/_gen/images/img/avatar_hu_c68a00bbf16dac8.png b/resources/_gen/images/img/avatar_hu_c68a00bbf16dac8.png new file mode 100644 index 0000000..bab4bde Binary files /dev/null and b/resources/_gen/images/img/avatar_hu_c68a00bbf16dac8.png differ diff --git a/resources/_gen/images/img/me_hu_caa0902d7ae4598e.png b/resources/_gen/images/img/me_hu_caa0902d7ae4598e.png new file mode 100644 index 0000000..9a09a75 Binary files /dev/null and b/resources/_gen/images/img/me_hu_caa0902d7ae4598e.png differ diff --git a/resources/_gen/images/orig-posts/hello-world/cover_hu_bea442a1395058f4.jpg b/resources/_gen/images/orig-posts/hello-world/cover_hu_bea442a1395058f4.jpg new file mode 100644 index 0000000..7c6ce44 Binary files /dev/null and b/resources/_gen/images/orig-posts/hello-world/cover_hu_bea442a1395058f4.jpg differ diff --git a/resources/_gen/images/orig-posts/hello-world/cover_hu_c86b681f3fee94ff.jpg b/resources/_gen/images/orig-posts/hello-world/cover_hu_c86b681f3fee94ff.jpg new file mode 100644 index 0000000..2bc4162 Binary files /dev/null and b/resources/_gen/images/orig-posts/hello-world/cover_hu_c86b681f3fee94ff.jpg differ diff --git a/resources/_gen/images/orig-posts/hello-world/cover_hu_e95a4276bf860a84.jpg b/resources/_gen/images/orig-posts/hello-world/cover_hu_e95a4276bf860a84.jpg new file mode 100644 index 0000000..0707d56 Binary files /dev/null and b/resources/_gen/images/orig-posts/hello-world/cover_hu_e95a4276bf860a84.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/1_hu_811b671457ffff1f.jpg b/resources/_gen/images/orig-posts/image-gallery/1_hu_811b671457ffff1f.jpg new file mode 100644 index 0000000..321434e Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/1_hu_811b671457ffff1f.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/1_hu_c74af69dd7c1dcda.jpg b/resources/_gen/images/orig-posts/image-gallery/1_hu_c74af69dd7c1dcda.jpg new file mode 100644 index 0000000..e500324 Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/1_hu_c74af69dd7c1dcda.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/2_hu_27862a49608da0d9.jpg b/resources/_gen/images/orig-posts/image-gallery/2_hu_27862a49608da0d9.jpg new file mode 100644 index 0000000..8c0974e Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/2_hu_27862a49608da0d9.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/2_hu_3e58a979f20e4e46.jpg b/resources/_gen/images/orig-posts/image-gallery/2_hu_3e58a979f20e4e46.jpg new file mode 100644 index 0000000..76c2cca Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/2_hu_3e58a979f20e4e46.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/2_hu_42f6436cb1637265.jpg b/resources/_gen/images/orig-posts/image-gallery/2_hu_42f6436cb1637265.jpg new file mode 100644 index 0000000..3f319d1 Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/2_hu_42f6436cb1637265.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/2_hu_4dc3db583644b205.jpg b/resources/_gen/images/orig-posts/image-gallery/2_hu_4dc3db583644b205.jpg new file mode 100644 index 0000000..2206213 Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/2_hu_4dc3db583644b205.jpg differ diff --git a/resources/_gen/images/orig-posts/image-gallery/2_hu_b17bf99990319ec5.jpg b/resources/_gen/images/orig-posts/image-gallery/2_hu_b17bf99990319ec5.jpg new file mode 100644 index 0000000..125b8f8 Binary files /dev/null and b/resources/_gen/images/orig-posts/image-gallery/2_hu_b17bf99990319ec5.jpg differ diff --git a/resources/_gen/images/orig-posts/shortcodes/cover_hu_3a2cb75c11443827.jpg b/resources/_gen/images/orig-posts/shortcodes/cover_hu_3a2cb75c11443827.jpg new file mode 100644 index 0000000..56ceda1 Binary files /dev/null and b/resources/_gen/images/orig-posts/shortcodes/cover_hu_3a2cb75c11443827.jpg differ diff --git a/resources/_gen/images/orig-posts/shortcodes/cover_hu_52b35abfd57b8d11.jpg b/resources/_gen/images/orig-posts/shortcodes/cover_hu_52b35abfd57b8d11.jpg new file mode 100644 index 0000000..b3fe2e4 Binary files /dev/null and b/resources/_gen/images/orig-posts/shortcodes/cover_hu_52b35abfd57b8d11.jpg differ diff --git a/resources/_gen/images/orig-posts/shortcodes/cover_hu_5667347daefb4230.jpg b/resources/_gen/images/orig-posts/shortcodes/cover_hu_5667347daefb4230.jpg new file mode 100644 index 0000000..ce19b14 Binary files /dev/null and b/resources/_gen/images/orig-posts/shortcodes/cover_hu_5667347daefb4230.jpg differ diff --git a/resources/_gen/images/p/hello-world/cover_hu_bea442a1395058f4.jpg b/resources/_gen/images/p/hello-world/cover_hu_bea442a1395058f4.jpg new file mode 100644 index 0000000..7c6ce44 Binary files /dev/null and b/resources/_gen/images/p/hello-world/cover_hu_bea442a1395058f4.jpg differ diff --git a/resources/_gen/images/p/hello-world/cover_hu_c86b681f3fee94ff.jpg b/resources/_gen/images/p/hello-world/cover_hu_c86b681f3fee94ff.jpg new file mode 100644 index 0000000..2bc4162 Binary files /dev/null and b/resources/_gen/images/p/hello-world/cover_hu_c86b681f3fee94ff.jpg differ diff --git a/resources/_gen/images/p/hello-world/cover_hu_e95a4276bf860a84.jpg b/resources/_gen/images/p/hello-world/cover_hu_e95a4276bf860a84.jpg new file mode 100644 index 0000000..0707d56 Binary files /dev/null and b/resources/_gen/images/p/hello-world/cover_hu_e95a4276bf860a84.jpg differ diff --git a/resources/_gen/images/p/image-gallery/1_hu_811b671457ffff1f.jpg b/resources/_gen/images/p/image-gallery/1_hu_811b671457ffff1f.jpg new file mode 100644 index 0000000..321434e Binary files /dev/null and b/resources/_gen/images/p/image-gallery/1_hu_811b671457ffff1f.jpg differ diff --git a/resources/_gen/images/p/image-gallery/1_hu_c74af69dd7c1dcda.jpg b/resources/_gen/images/p/image-gallery/1_hu_c74af69dd7c1dcda.jpg new file mode 100644 index 0000000..e500324 Binary files /dev/null and b/resources/_gen/images/p/image-gallery/1_hu_c74af69dd7c1dcda.jpg differ diff --git a/resources/_gen/images/p/image-gallery/2_hu_27862a49608da0d9.jpg b/resources/_gen/images/p/image-gallery/2_hu_27862a49608da0d9.jpg new file mode 100644 index 0000000..8c0974e Binary files /dev/null and b/resources/_gen/images/p/image-gallery/2_hu_27862a49608da0d9.jpg differ diff --git a/resources/_gen/images/p/image-gallery/2_hu_3e58a979f20e4e46.jpg b/resources/_gen/images/p/image-gallery/2_hu_3e58a979f20e4e46.jpg new file mode 100644 index 0000000..76c2cca Binary files /dev/null and b/resources/_gen/images/p/image-gallery/2_hu_3e58a979f20e4e46.jpg differ diff --git a/resources/_gen/images/p/image-gallery/2_hu_42f6436cb1637265.jpg b/resources/_gen/images/p/image-gallery/2_hu_42f6436cb1637265.jpg new file mode 100644 index 0000000..3f319d1 Binary files /dev/null and b/resources/_gen/images/p/image-gallery/2_hu_42f6436cb1637265.jpg differ diff --git a/resources/_gen/images/p/image-gallery/2_hu_4dc3db583644b205.jpg b/resources/_gen/images/p/image-gallery/2_hu_4dc3db583644b205.jpg new file mode 100644 index 0000000..2206213 Binary files /dev/null and b/resources/_gen/images/p/image-gallery/2_hu_4dc3db583644b205.jpg differ diff --git a/resources/_gen/images/p/image-gallery/2_hu_b17bf99990319ec5.jpg b/resources/_gen/images/p/image-gallery/2_hu_b17bf99990319ec5.jpg new file mode 100644 index 0000000..125b8f8 Binary files /dev/null and b/resources/_gen/images/p/image-gallery/2_hu_b17bf99990319ec5.jpg differ diff --git a/resources/_gen/images/p/shortcodes/cover_hu_3a2cb75c11443827.jpg b/resources/_gen/images/p/shortcodes/cover_hu_3a2cb75c11443827.jpg new file mode 100644 index 0000000..56ceda1 Binary files /dev/null and b/resources/_gen/images/p/shortcodes/cover_hu_3a2cb75c11443827.jpg differ diff --git a/resources/_gen/images/p/shortcodes/cover_hu_52b35abfd57b8d11.jpg b/resources/_gen/images/p/shortcodes/cover_hu_52b35abfd57b8d11.jpg new file mode 100644 index 0000000..b3fe2e4 Binary files /dev/null and b/resources/_gen/images/p/shortcodes/cover_hu_52b35abfd57b8d11.jpg differ diff --git a/resources/_gen/images/p/shortcodes/cover_hu_5667347daefb4230.jpg b/resources/_gen/images/p/shortcodes/cover_hu_5667347daefb4230.jpg new file mode 100644 index 0000000..ce19b14 Binary files /dev/null and b/resources/_gen/images/p/shortcodes/cover_hu_5667347daefb4230.jpg differ diff --git a/static/css/highlight.css b/static/css/highlight.css deleted file mode 100644 index 2d4e087..0000000 --- a/static/css/highlight.css +++ /dev/null @@ -1,107 +0,0 @@ -/* - IR_Black style (c) Vasily Mikhailitchenko -*/ - -.hljs { - display: block; - overflow-x: auto; - /*padding: 0.5em;*/ - background: #272b2d; - color: #d0d0d0; - -webkit-text-size-adjust: none; -} - -.hljs-shebang, -.hljs-comment { - color: #777279; -} - -.hljs-keyword, -.hljs-tag, -.tex .hljs-command, -.hljs-request, -.hljs-status, -.clojure .hljs-attribute { - color: #ebde68; -} - -.hljs-sub .hljs-keyword, -.method, -.hljs-list .hljs-title, -.nginx .hljs-title { - color: #ffffb6; -} - -.hljs-string, -.hljs-tag .hljs-value, -.hljs-cdata, -.hljs-filter .hljs-argument, -.hljs-attr_selector, -.apache .hljs-cbracket, -.hljs-date, -.coffeescript .hljs-attribute { - color: #c1ef65; -} - -.hljs-subst { - color: #daefa3; -} - -.hljs-regexp { - color: #e9c062; -} - -.hljs-title, -.hljs-sub .hljs-identifier, -.hljs-pi, -.hljs-decorator, -.tex .hljs-special, -.hljs-type, -.hljs-constant, -.smalltalk .hljs-class, -.hljs-doctag, -.nginx .hljs-built_in { - color: #c1ef65; -} - -.hljs-symbol, -.ruby .hljs-symbol .hljs-string, -.hljs-number, -.hljs-variable, -.vbscript, -.hljs-literal, -.hljs-name { - color: #77bcd7; -} - -.css .hljs-tag { - color: #96cbfe; -} - -.css .hljs-rule .hljs-property, -.css .hljs-id { - color: #ffffb6; -} - -.css .hljs-class { - color: #fff; -} - -.hljs-hexcolor { - color: #c6c5fe; -} - -.hljs-number { - color:#77bcd7; -} - -.coffeescript .javascript, -.javascript .xml, -.tex .hljs-formula, -.xml .javascript, -.xml .vbscript, -.xml .css, -.xml .hljs-cdata { - opacity: 0.7; -} - diff --git a/static/css/main.min.css b/static/css/main.min.css deleted file mode 100644 index a7da2ab..0000000 --- a/static/css/main.min.css +++ /dev/null @@ -1,4 +0,0 @@ -@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.eot);src:local('Source Sans Pro'),local('SourceSansPro-Regular'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.woff2) format('woff2'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.woff) format('woff'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.ttf) format('truetype'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-regular.svg#SourceSansPro) format('svg')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.eot);src:local('Source Sans Pro Bold'),local('SourceSansPro-Bold'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.eot?#iefix) format('embedded-opentype'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.woff2) format('woff2'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.woff) format('woff'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.ttf) format('truetype'),url(../fonts/source-sans-pro-v9-latin-ext_latin_vietnamese-700.svg#SourceSansPro) format('svg')}@font-face{font-family:Raleway;font-style:normal;font-weight:400;src:url(../fonts/raleway-v10-latin-ext_latin-regular.eot);src:local('Raleway'),local('Raleway-Regular'),url(../fonts/raleway-v10-latin-ext_latin-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/raleway-v10-latin-ext_latin-regular.woff2) format('woff2'),url(../fonts/raleway-v10-latin-ext_latin-regular.woff) format('woff'),url(../fonts/raleway-v10-latin-ext_latin-regular.ttf) format('truetype'),url(../fonts/raleway-v10-latin-ext_latin-regular.svg#Raleway) format('svg')}@font-face{font-family:Raleway;font-style:normal;font-weight:800;src:url(../fonts/raleway-v10-latin-ext_latin-800.eot);src:local('Raleway ExtraBold'),local('Raleway-ExtraBold'),url(../fonts/raleway-v10-latin-ext_latin-800.eot?#iefix) format('embedded-opentype'),url(../fonts/raleway-v10-latin-ext_latin-800.woff2) format('woff2'),url(../fonts/raleway-v10-latin-ext_latin-800.woff) format('woff'),url(../fonts/raleway-v10-latin-ext_latin-800.ttf) format('truetype'),url(../fonts/raleway-v10-latin-ext_latin-800.svg#Raleway) format('svg')}@font-face{font-family:Raleway;font-style:normal;font-weight:900;src:url(../fonts/raleway-v10-latin-ext_latin-900.eot);src:local('Raleway Black'),local('Raleway-Black'),url(../fonts/raleway-v10-latin-ext_latin-900.eot?#iefix) format('embedded-opentype'),url(../fonts/raleway-v10-latin-ext_latin-900.woff2) format('woff2'),url(../fonts/raleway-v10-latin-ext_latin-900.woff) format('woff'),url(../fonts/raleway-v10-latin-ext_latin-900.ttf) format('truetype'),url(../fonts/raleway-v10-latin-ext_latin-900.svg#Raleway) format('svg')}/*! - * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}*,.row,:after,:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.row.\30 \25>*,.row.uniform.\30 \25>*{padding:0}a:hover,a:hover:before{color:#2ebaae!important}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,pre code,section{display:block}.author,h1,h2,h3,h4,h5,h6{letter-spacing:.25em;text-transform:uppercase}#header #search,#header .main ul li,#header h1,.author,.post>header .meta .published{white-space:nowrap}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}blockquote,em,i{font-style:italic}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}body{-webkit-text-size-adjust:none;-ms-overflow-style:scrollbar;background:#f4f4f4}*,:after,:before{box-sizing:border-box}.row{border-bottom:solid 1px transparent;box-sizing:border-box}.row:after,.row:before{content:'';display:block;clear:both;height:0}.row.uniform>*>:first-child{margin-top:0}.row.uniform>*>:last-child{margin-bottom:0}.row.\30 \25,.row.uniform.\30 \25{margin:0 0 -1px}.row>*{float:left;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 0 0 1em}.row{margin:0 0 -1px -1em}.row.uniform>*{padding:1em 0 0 1em}.row.uniform{margin:-1em 0 -1px -1em}.row.\32 00\25>*{padding:0 0 0 2em}.row.\32 00\25{margin:0 0 -1px -2em}.row.uniform.\32 00\25>*{padding:2em 0 0 2em}.row.uniform.\32 00\25{margin:-2em 0 -1px -2em}.row.\31 50\25>*{padding:0 0 0 1.5em}.row.\31 50\25{margin:0 0 -1px -1.5em}.row.uniform.\31 50\25>*{padding:1.5em 0 0 1.5em}.row.uniform.\31 50\25{margin:-1.5em 0 -1px -1.5em}.row.\35 0\25>*{padding:0 0 0 .5em}.row.\35 0\25{margin:0 0 -1px -.5em}.row.uniform.\35 0\25>*{padding:.5em 0 0 .5em}.row.uniform.\35 0\25{margin:-.5em 0 -1px -.5em}.row.\32 5\25>*{padding:0 0 0 .25em}.row.\32 5\25{margin:0 0 -1px -.25em}.row.uniform.\32 5\25>*{padding:.25em 0 0 .25em}.row.uniform.\32 5\25{margin:-.25em 0 -1px -.25em}.\31 0u,.\31 0u\24,.\31 1u,.\31 1u\24,.\31 2u,.\31 2u\24,.\31 u,.\31 u\24,.\32 u,.\32 u\24,.\33 u,.\33 u\24,.\34 u,.\34 u\24,.\35 u,.\35 u\24,.\36 u,.\36 u\24,.\38 u,.\38 u\24,.\39 u,.\39 u\24{clear:none;margin-left:0}.\31 2u,.\31 2u\24{width:100%}.\31 1u,.\31 1u\24{width:91.6666666667%}.\31 0u,.\31 0u\24{width:83.3333333333%}.\39 u,.\39 u\24{width:75%}.\38 u,.\38 u\24{width:66.6666666667%}.\37 u,.\37 u\24{width:58.3333333333%;clear:none;margin-left:0}.\36 u,.\36 u\24{width:50%}.\35 u,.\35 u\24{width:41.6666666667%}.\34 u,.\34 u\24{width:33.3333333333%}.\33 u,.\33 u\24{width:25%}.\32 u,.\32 u\24{width:16.6666666667%}.\31 u,.\31 u\24{width:8.3333333333%}.\31 0u\24+*,.\31 1u\24+*,.\31 2u\24+*,.\31 u\24+*,.\32 u\24+*,.\33 u\24+*,.\34 u\24+*,.\35 u\24+*,.\36 u\24+*,.\37 u\24+*,.\38 u\24+*,.\39 u\24+*{clear:left}.\-11u{margin-left:91.66667%}.\-10u{margin-left:83.33333%}.\-9u{margin-left:75%}.\-8u{margin-left:66.66667%}.\-7u{margin-left:58.33333%}.\-6u{margin-left:50%}.\-5u{margin-left:41.66667%}.\-4u{margin-left:33.33333%}.\-3u{margin-left:25%}.\-2u{margin-left:16.66667%}.\-1u{margin-left:8.33333%}@media screen and (max-width:1680px){.row>*{padding:0 0 0 1em}.row{margin:0 0 -1px -1em}.row.uniform>*{padding:1em 0 0 1em}.row.uniform{margin:-1em 0 -1px -1em}.row.\32 00\25>*{padding:0 0 0 2em}.row.\32 00\25{margin:0 0 -1px -2em}.row.uniform.\32 00\25>*{padding:2em 0 0 2em}.row.uniform.\32 00\25{margin:-2em 0 -1px -2em}.row.\31 50\25>*{padding:0 0 0 1.5em}.row.\31 50\25{margin:0 0 -1px -1.5em}.row.uniform.\31 50\25>*{padding:1.5em 0 0 1.5em}.row.uniform.\31 50\25{margin:-1.5em 0 -1px -1.5em}.row.\35 0\25>*{padding:0 0 0 .5em}.row.\35 0\25{margin:0 0 -1px -.5em}.row.uniform.\35 0\25>*{padding:.5em 0 0 .5em}.row.uniform.\35 0\25{margin:-.5em 0 -1px -.5em}.row.\32 5\25>*{padding:0 0 0 .25em}.row.\32 5\25{margin:0 0 -1px -.25em}.row.uniform.\32 5\25>*{padding:.25em 0 0 .25em}.row.uniform.\32 5\25{margin:-.25em 0 -1px -.25em}.\31 2u\24\28xlarge\29,.\31 2u\28xlarge\29{width:100%;clear:none;margin-left:0}.\31 1u\24\28xlarge\29,.\31 1u\28xlarge\29{width:91.6666666667%;clear:none;margin-left:0}.\31 0u\24\28xlarge\29,.\31 0u\28xlarge\29{width:83.3333333333%;clear:none;margin-left:0}.\39 u\24\28xlarge\29,.\39 u\28xlarge\29{width:75%;clear:none;margin-left:0}.\38 u\24\28xlarge\29,.\38 u\28xlarge\29{width:66.6666666667%;clear:none;margin-left:0}.\37 u\24\28xlarge\29,.\37 u\28xlarge\29{width:58.3333333333%;clear:none;margin-left:0}.\36 u\24\28xlarge\29,.\36 u\28xlarge\29{width:50%;clear:none;margin-left:0}.\35 u\24\28xlarge\29,.\35 u\28xlarge\29{width:41.6666666667%;clear:none;margin-left:0}.\34 u\24\28xlarge\29,.\34 u\28xlarge\29{width:33.3333333333%;clear:none;margin-left:0}.\33 u\24\28xlarge\29,.\33 u\28xlarge\29{width:25%;clear:none;margin-left:0}.\32 u\24\28xlarge\29,.\32 u\28xlarge\29{width:16.6666666667%;clear:none;margin-left:0}.\31 u\24\28xlarge\29,.\31 u\28xlarge\29{width:8.3333333333%;clear:none;margin-left:0}.\31 0u\24\28xlarge\29+*,.\31 1u\24\28xlarge\29+*,.\31 2u\24\28xlarge\29+*,.\31 u\24\28xlarge\29+*,.\32 u\24\28xlarge\29+*,.\33 u\24\28xlarge\29+*,.\34 u\24\28xlarge\29+*,.\35 u\24\28xlarge\29+*,.\36 u\24\28xlarge\29+*,.\37 u\24\28xlarge\29+*,.\38 u\24\28xlarge\29+*,.\39 u\24\28xlarge\29+*{clear:left}.\-11u\28xlarge\29{margin-left:91.66667%}.\-10u\28xlarge\29{margin-left:83.33333%}.\-9u\28xlarge\29{margin-left:75%}.\-8u\28xlarge\29{margin-left:66.66667%}.\-7u\28xlarge\29{margin-left:58.33333%}.\-6u\28xlarge\29{margin-left:50%}.\-5u\28xlarge\29{margin-left:41.66667%}.\-4u\28xlarge\29{margin-left:33.33333%}.\-3u\28xlarge\29{margin-left:25%}.\-2u\28xlarge\29{margin-left:16.66667%}.\-1u\28xlarge\29{margin-left:8.33333%}}@media screen and (max-width:1280px){.row>*{padding:0 0 0 1em}.row{margin:0 0 -1px -1em}.row.uniform>*{padding:1em 0 0 1em}.row.uniform{margin:-1em 0 -1px -1em}.row.\32 00\25>*{padding:0 0 0 2em}.row.\32 00\25{margin:0 0 -1px -2em}.row.uniform.\32 00\25>*{padding:2em 0 0 2em}.row.uniform.\32 00\25{margin:-2em 0 -1px -2em}.row.\31 50\25>*{padding:0 0 0 1.5em}.row.\31 50\25{margin:0 0 -1px -1.5em}.row.uniform.\31 50\25>*{padding:1.5em 0 0 1.5em}.row.uniform.\31 50\25{margin:-1.5em 0 -1px -1.5em}.row.\35 0\25>*{padding:0 0 0 .5em}.row.\35 0\25{margin:0 0 -1px -.5em}.row.uniform.\35 0\25>*{padding:.5em 0 0 .5em}.row.uniform.\35 0\25{margin:-.5em 0 -1px -.5em}.row.\32 5\25>*{padding:0 0 0 .25em}.row.\32 5\25{margin:0 0 -1px -.25em}.row.uniform.\32 5\25>*{padding:.25em 0 0 .25em}.row.uniform.\32 5\25{margin:-.25em 0 -1px -.25em}.\31 2u\24\28large\29,.\31 2u\28large\29{width:100%;clear:none;margin-left:0}.\31 1u\24\28large\29,.\31 1u\28large\29{width:91.6666666667%;clear:none;margin-left:0}.\31 0u\24\28large\29,.\31 0u\28large\29{width:83.3333333333%;clear:none;margin-left:0}.\39 u\24\28large\29,.\39 u\28large\29{width:75%;clear:none;margin-left:0}.\38 u\24\28large\29,.\38 u\28large\29{width:66.6666666667%;clear:none;margin-left:0}.\37 u\24\28large\29,.\37 u\28large\29{width:58.3333333333%;clear:none;margin-left:0}.\36 u\24\28large\29,.\36 u\28large\29{width:50%;clear:none;margin-left:0}.\35 u\24\28large\29,.\35 u\28large\29{width:41.6666666667%;clear:none;margin-left:0}.\34 u\24\28large\29,.\34 u\28large\29{width:33.3333333333%;clear:none;margin-left:0}.\33 u\24\28large\29,.\33 u\28large\29{width:25%;clear:none;margin-left:0}.\32 u\24\28large\29,.\32 u\28large\29{width:16.6666666667%;clear:none;margin-left:0}.\31 u\24\28large\29,.\31 u\28large\29{width:8.3333333333%;clear:none;margin-left:0}.\31 0u\24\28large\29+*,.\31 1u\24\28large\29+*,.\31 2u\24\28large\29+*,.\31 u\24\28large\29+*,.\32 u\24\28large\29+*,.\33 u\24\28large\29+*,.\34 u\24\28large\29+*,.\35 u\24\28large\29+*,.\36 u\24\28large\29+*,.\37 u\24\28large\29+*,.\38 u\24\28large\29+*,.\39 u\24\28large\29+*{clear:left}.\-11u\28large\29{margin-left:91.66667%}.\-10u\28large\29{margin-left:83.33333%}.\-9u\28large\29{margin-left:75%}.\-8u\28large\29{margin-left:66.66667%}.\-7u\28large\29{margin-left:58.33333%}.\-6u\28large\29{margin-left:50%}.\-5u\28large\29{margin-left:41.66667%}.\-4u\28large\29{margin-left:33.33333%}.\-3u\28large\29{margin-left:25%}.\-2u\28large\29{margin-left:16.66667%}.\-1u\28large\29{margin-left:8.33333%}}@media screen and (max-width:980px){.row>*{padding:0 0 0 1em}.row{margin:0 0 -1px -1em}.row.uniform>*{padding:1em 0 0 1em}.row.uniform{margin:-1em 0 -1px -1em}.row.\32 00\25>*{padding:0 0 0 2em}.row.\32 00\25{margin:0 0 -1px -2em}.row.uniform.\32 00\25>*{padding:2em 0 0 2em}.row.uniform.\32 00\25{margin:-2em 0 -1px -2em}.row.\31 50\25>*{padding:0 0 0 1.5em}.row.\31 50\25{margin:0 0 -1px -1.5em}.row.uniform.\31 50\25>*{padding:1.5em 0 0 1.5em}.row.uniform.\31 50\25{margin:-1.5em 0 -1px -1.5em}.row.\35 0\25>*{padding:0 0 0 .5em}.row.\35 0\25{margin:0 0 -1px -.5em}.row.uniform.\35 0\25>*{padding:.5em 0 0 .5em}.row.uniform.\35 0\25{margin:-.5em 0 -1px -.5em}.row.\32 5\25>*{padding:0 0 0 .25em}.row.\32 5\25{margin:0 0 -1px -.25em}.row.uniform.\32 5\25>*{padding:.25em 0 0 .25em}.row.uniform.\32 5\25{margin:-.25em 0 -1px -.25em}.\31 2u\24\28medium\29,.\31 2u\28medium\29{width:100%;clear:none;margin-left:0}.\31 1u\24\28medium\29,.\31 1u\28medium\29{width:91.6666666667%;clear:none;margin-left:0}.\31 0u\24\28medium\29,.\31 0u\28medium\29{width:83.3333333333%;clear:none;margin-left:0}.\39 u\24\28medium\29,.\39 u\28medium\29{width:75%;clear:none;margin-left:0}.\38 u\24\28medium\29,.\38 u\28medium\29{width:66.6666666667%;clear:none;margin-left:0}.\37 u\24\28medium\29,.\37 u\28medium\29{width:58.3333333333%;clear:none;margin-left:0}.\36 u\24\28medium\29,.\36 u\28medium\29{width:50%;clear:none;margin-left:0}.\35 u\24\28medium\29,.\35 u\28medium\29{width:41.6666666667%;clear:none;margin-left:0}.\34 u\24\28medium\29,.\34 u\28medium\29{width:33.3333333333%;clear:none;margin-left:0}.\33 u\24\28medium\29,.\33 u\28medium\29{width:25%;clear:none;margin-left:0}.\32 u\24\28medium\29,.\32 u\28medium\29{width:16.6666666667%;clear:none;margin-left:0}.\31 u\24\28medium\29,.\31 u\28medium\29{width:8.3333333333%;clear:none;margin-left:0}.\31 0u\24\28medium\29+*,.\31 1u\24\28medium\29+*,.\31 2u\24\28medium\29+*,.\31 u\24\28medium\29+*,.\32 u\24\28medium\29+*,.\33 u\24\28medium\29+*,.\34 u\24\28medium\29+*,.\35 u\24\28medium\29+*,.\36 u\24\28medium\29+*,.\37 u\24\28medium\29+*,.\38 u\24\28medium\29+*,.\39 u\24\28medium\29+*{clear:left}.\-11u\28medium\29{margin-left:91.66667%}.\-10u\28medium\29{margin-left:83.33333%}.\-9u\28medium\29{margin-left:75%}.\-8u\28medium\29{margin-left:66.66667%}.\-7u\28medium\29{margin-left:58.33333%}.\-6u\28medium\29{margin-left:50%}.\-5u\28medium\29{margin-left:41.66667%}.\-4u\28medium\29{margin-left:33.33333%}.\-3u\28medium\29{margin-left:25%}.\-2u\28medium\29{margin-left:16.66667%}.\-1u\28medium\29{margin-left:8.33333%}}@media screen and (max-width:736px){.row>*{padding:0 0 0 1em}.row{margin:0 0 -1px -1em}.row.uniform>*{padding:1em 0 0 1em}.row.uniform{margin:-1em 0 -1px -1em}.row.\32 00\25>*{padding:0 0 0 2em}.row.\32 00\25{margin:0 0 -1px -2em}.row.uniform.\32 00\25>*{padding:2em 0 0 2em}.row.uniform.\32 00\25{margin:-2em 0 -1px -2em}.row.\31 50\25>*{padding:0 0 0 1.5em}.row.\31 50\25{margin:0 0 -1px -1.5em}.row.uniform.\31 50\25>*{padding:1.5em 0 0 1.5em}.row.uniform.\31 50\25{margin:-1.5em 0 -1px -1.5em}.row.\35 0\25>*{padding:0 0 0 .5em}.row.\35 0\25{margin:0 0 -1px -.5em}.row.uniform.\35 0\25>*{padding:.5em 0 0 .5em}.row.uniform.\35 0\25{margin:-.5em 0 -1px -.5em}.row.\32 5\25>*{padding:0 0 0 .25em}.row.\32 5\25{margin:0 0 -1px -.25em}.row.uniform.\32 5\25>*{padding:.25em 0 0 .25em}.row.uniform.\32 5\25{margin:-.25em 0 -1px -.25em}.\31 2u\24\28small\29,.\31 2u\28small\29{width:100%;clear:none;margin-left:0}.\31 1u\24\28small\29,.\31 1u\28small\29{width:91.6666666667%;clear:none;margin-left:0}.\31 0u\24\28small\29,.\31 0u\28small\29{width:83.3333333333%;clear:none;margin-left:0}.\39 u\24\28small\29,.\39 u\28small\29{width:75%;clear:none;margin-left:0}.\38 u\24\28small\29,.\38 u\28small\29{width:66.6666666667%;clear:none;margin-left:0}.\37 u\24\28small\29,.\37 u\28small\29{width:58.3333333333%;clear:none;margin-left:0}.\36 u\24\28small\29,.\36 u\28small\29{width:50%;clear:none;margin-left:0}.\35 u\24\28small\29,.\35 u\28small\29{width:41.6666666667%;clear:none;margin-left:0}.\34 u\24\28small\29,.\34 u\28small\29{width:33.3333333333%;clear:none;margin-left:0}.\33 u\24\28small\29,.\33 u\28small\29{width:25%;clear:none;margin-left:0}.\32 u\24\28small\29,.\32 u\28small\29{width:16.6666666667%;clear:none;margin-left:0}.\31 u\24\28small\29,.\31 u\28small\29{width:8.3333333333%;clear:none;margin-left:0}.\31 0u\24\28small\29+*,.\31 1u\24\28small\29+*,.\31 2u\24\28small\29+*,.\31 u\24\28small\29+*,.\32 u\24\28small\29+*,.\33 u\24\28small\29+*,.\34 u\24\28small\29+*,.\35 u\24\28small\29+*,.\36 u\24\28small\29+*,.\37 u\24\28small\29+*,.\38 u\24\28small\29+*,.\39 u\24\28small\29+*{clear:left}.\-11u\28small\29{margin-left:91.66667%}.\-10u\28small\29{margin-left:83.33333%}.\-9u\28small\29{margin-left:75%}.\-8u\28small\29{margin-left:66.66667%}.\-7u\28small\29{margin-left:58.33333%}.\-6u\28small\29{margin-left:50%}.\-5u\28small\29{margin-left:41.66667%}.\-4u\28small\29{margin-left:33.33333%}.\-3u\28small\29{margin-left:25%}.\-2u\28small\29{margin-left:16.66667%}.\-1u\28small\29{margin-left:8.33333%}}@media screen and (max-width:480px){.row>*{padding:0 0 0 1em}.row{margin:0 0 -1px -1em}.row.uniform>*{padding:1em 0 0 1em}.row.uniform{margin:-1em 0 -1px -1em}.row.\32 00\25>*{padding:0 0 0 2em}.row.\32 00\25{margin:0 0 -1px -2em}.row.uniform.\32 00\25>*{padding:2em 0 0 2em}.row.uniform.\32 00\25{margin:-2em 0 -1px -2em}.row.\31 50\25>*{padding:0 0 0 1.5em}.row.\31 50\25{margin:0 0 -1px -1.5em}.row.uniform.\31 50\25>*{padding:1.5em 0 0 1.5em}.row.uniform.\31 50\25{margin:-1.5em 0 -1px -1.5em}.row.\35 0\25>*{padding:0 0 0 .5em}.row.\35 0\25{margin:0 0 -1px -.5em}.row.uniform.\35 0\25>*{padding:.5em 0 0 .5em}.row.uniform.\35 0\25{margin:-.5em 0 -1px -.5em}.row.\32 5\25>*{padding:0 0 0 .25em}.row.\32 5\25{margin:0 0 -1px -.25em}.row.uniform.\32 5\25>*{padding:.25em 0 0 .25em}.row.uniform.\32 5\25{margin:-.25em 0 -1px -.25em}.\31 2u\24\28xsmall\29,.\31 2u\28xsmall\29{width:100%;clear:none;margin-left:0}.\31 1u\24\28xsmall\29,.\31 1u\28xsmall\29{width:91.6666666667%;clear:none;margin-left:0}.\31 0u\24\28xsmall\29,.\31 0u\28xsmall\29{width:83.3333333333%;clear:none;margin-left:0}.\39 u\24\28xsmall\29,.\39 u\28xsmall\29{width:75%;clear:none;margin-left:0}.\38 u\24\28xsmall\29,.\38 u\28xsmall\29{width:66.6666666667%;clear:none;margin-left:0}.\37 u\24\28xsmall\29,.\37 u\28xsmall\29{width:58.3333333333%;clear:none;margin-left:0}.\36 u\24\28xsmall\29,.\36 u\28xsmall\29{width:50%;clear:none;margin-left:0}.\35 u\24\28xsmall\29,.\35 u\28xsmall\29{width:41.6666666667%;clear:none;margin-left:0}.\34 u\24\28xsmall\29,.\34 u\28xsmall\29{width:33.3333333333%;clear:none;margin-left:0}.\33 u\24\28xsmall\29,.\33 u\28xsmall\29{width:25%;clear:none;margin-left:0}.\32 u\24\28xsmall\29,.\32 u\28xsmall\29{width:16.6666666667%;clear:none;margin-left:0}.\31 u\24\28xsmall\29,.\31 u\28xsmall\29{width:8.3333333333%;clear:none;margin-left:0}.\31 0u\24\28xsmall\29+*,.\31 1u\24\28xsmall\29+*,.\31 2u\24\28xsmall\29+*,.\31 u\24\28xsmall\29+*,.\32 u\24\28xsmall\29+*,.\33 u\24\28xsmall\29+*,.\34 u\24\28xsmall\29+*,.\35 u\24\28xsmall\29+*,.\36 u\24\28xsmall\29+*,.\37 u\24\28xsmall\29+*,.\38 u\24\28xsmall\29+*,.\39 u\24\28xsmall\29+*{clear:left}.\-11u\28xsmall\29{margin-left:91.66667%}.\-10u\28xsmall\29{margin-left:83.33333%}.\-9u\28xsmall\29{margin-left:75%}.\-8u\28xsmall\29{margin-left:66.66667%}.\-7u\28xsmall\29{margin-left:58.33333%}.\-6u\28xsmall\29{margin-left:50%}.\-5u\28xsmall\29{margin-left:41.66667%}.\-4u\28xsmall\29{margin-left:33.33333%}.\-3u\28xsmall\29{margin-left:25%}.\-2u\28xsmall\29{margin-left:16.66667%}.\-1u\28xsmall\29{margin-left:8.33333%}body,html{min-width:320px}}blockquote,p,pre{margin:0 0 2em}@-ms-viewport{width:device-width}body.is-loading *,body.is-loading :after,body.is-loading :before{-moz-animation:none!important;-webkit-animation:none!important;-ms-animation:none!important;animation:none!important;-moz-transition:none!important;-webkit-transition:none!important;-ms-transition:none!important;transition:none!important}body,input,select,textarea{color:#646464;font-family:"Source Sans Pro",Helvetica,sans-serif;font-size:14pt;font-weight:400;line-height:1.75}@media screen and (max-width:1680px){body,input,select,textarea{font-size:12pt}}@media screen and (max-width:1280px){body,input,select,textarea{font-size:12pt}}@media screen and (max-width:980px){body,input,select,textarea{font-size:12pt}}@media screen and (max-width:736px){body,input,select,textarea{font-size:12pt}}@media screen and (max-width:480px){body,input,select,textarea{font-size:12pt}}a{-moz-transition:color .2s ease,border-bottom-color .2s ease;-webkit-transition:color .2s ease,border-bottom-color .2s ease;-ms-transition:color .2s ease,border-bottom-color .2s ease;transition:color .2s ease,border-bottom-color .2s ease;border-bottom:dotted 1px rgba(160,160,160,.65);color:inherit;text-decoration:none}a:before{-moz-transition:color .2s ease;-webkit-transition:color .2s ease;-ms-transition:color .2s ease;transition:color .2s ease}a:hover{border-bottom-color:transparent}b,strong{color:#3c3b3b;font-weight:700}h1,h2,h3,h4,h5,h6{color:#3c3b3b;font-family:Raleway,Helvetica,sans-serif;font-weight:800;line-height:1.65;margin:0 0 1em}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;border-bottom:0}h2{font-size:1.1em}h3{font-size:.9em}h4,h5,h6{font-size:.7em}sub,sup{font-size:.8em;position:relative}sub{top:.5em}sup{top:-.5em}code,pre{font-family:"Courier New",monospace;font-size:.9em}blockquote{border-left:solid 4px rgba(160,160,160,.3);padding:.5em 0 .5em 2em}code{background:rgba(160,160,160,.075);border:1px solid rgba(160,160,160,.3);margin:0 .25em;padding:.25em .65em}pre{-webkit-overflow-scrolling:touch}pre code{line-height:1.75em;padding:1em 1.5em;overflow-x:auto}hr{border:0;border-bottom:solid 1px rgba(160,160,160,.3);margin:2em 0}hr.major{margin:3em 0}.align-left{text-align:left}.align-center{text-align:center}.align-right{text-align:right}.author{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-direction:row;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-moz-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;-moz-justify-content:-moz-flex-end;-webkit-justify-content:-webkit-flex-end;-ms-justify-content:-ms-flex-end;justify-content:flex-end;border-bottom:0;font-family:Raleway,Helvetica,sans-serif;font-size:.6em;font-weight:400}.author .name{-moz-transition:border-bottom-color .2s ease;-webkit-transition:border-bottom-color .2s ease;-ms-transition:border-bottom-color .2s ease;transition:border-bottom-color .2s ease;border-bottom:dotted 1px rgba(160,160,160,.65);display:block;margin:0 1.5em 0 0}.author img{border-radius:100%;display:block;width:4em}.author:hover .name{border-bottom-color:transparent}.blurb h2{font-size:.8em;margin:0 0 1.5em}.blurb h3{font-size:.7em}.blurb p{font-size:.9em}.box{border:1px solid rgba(160,160,160,.3);margin-bottom:2em;padding:1.5em}.box>:last-child,.box>:last-child>:last-child,.box>:last-child>:last-child>:last-child{margin-bottom:0}.box.alt{border:0;border-radius:0;padding:0}.button,button,input[type=submit],input[type=reset],input[type=button]{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color .2s ease,box-shadow .2s ease,color .2s ease;-webkit-transition:background-color .2s ease,box-shadow .2s ease,color .2s ease;-ms-transition:background-color .2s ease,box-shadow .2s ease,color .2s ease;transition:background-color .2s ease,box-shadow .2s ease,color .2s ease;background-color:transparent;border:0;box-shadow:inset 0 0 0 1px rgba(160,160,160,.3);color:#3c3b3b!important;cursor:pointer;display:inline-block;font-family:Raleway,Helvetica,sans-serif;font-size:.6em;font-weight:800;height:4.8125em;letter-spacing:.25em;line-height:4.8125em;padding:0 2.5em;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap}.select-wrapper:before,form.search:before{display:block;line-height:2.75em;height:2.75em}.button:hover,button:hover,input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover{box-shadow:inset 0 0 0 1px #2ebaae;color:#2ebaae!important}.button:hover:active,button:hover:active,input[type=submit]:hover:active,input[type=reset]:hover:active,input[type=button]:hover:active{background-color:rgba(46,186,174,.05)}.button:after,.button:before,button:after,button:before,input[type=submit]:after,input[type=submit]:before,input[type=reset]:after,input[type=reset]:before,input[type=button]:after,input[type=button]:before{color:#aaa;position:relative}.button:before,button:before,input[type=submit]:before,input[type=reset]:before,input[type=button]:before{left:-1em;padding:0 0 0 .75em}.button:after,button:after,input[type=submit]:after,input[type=reset]:after,input[type=button]:after{left:1em;padding:0 .75em 0 0}form.search:before,input[type=checkbox]+label:before,input[type=radio]+label:before{left:0;text-align:center;top:0;font-family:FontAwesome;text-transform:none!important;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal}.button.fit,button.fit,input[type=submit].fit,input[type=reset].fit,input[type=button].fit{display:block;margin:0 0 1em;width:100%}.button.big,button.big,input[type=submit].big,input[type=reset].big,input[type=button].big{font-size:.7em;padding:0 3em}.button.small,button.small,input[type=submit].small,input[type=reset].small,input[type=button].small{font-size:.5em}.button.disabled,.button:disabled,button.disabled,button:disabled,input[type=submit].disabled,input[type=submit]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=button].disabled,input[type=button]:disabled{-moz-pointer-events:none;-webkit-pointer-events:none;-ms-pointer-events:none;pointer-events:none;color:rgba(160,160,160,.3)!important}.button.disabled:before,.button:disabled:before,button.disabled:before,button:disabled:before,input[type=submit].disabled:before,input[type=submit]:disabled:before,input[type=reset].disabled:before,input[type=reset]:disabled:before,input[type=button].disabled:before,input[type=button]:disabled:before{color:rgba(160,160,160,.3)!important}form{margin:0 0 2em}form.search{text-decoration:none;position:relative}form.search:before{font-weight:400;color:#aaa;content:'\f002';position:absolute;width:2.5em}form.search>input:first-child{padding-left:2.5em}label{color:#3c3b3b;display:block;font-size:.9em;font-weight:700;margin:0 0 1em}input[type=email],input[type=tel],input[type=text],input[type=password],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;background:rgba(160,160,160,.075);border:none;border:1px solid rgba(160,160,160,.3);border-radius:0;color:inherit;display:block;outline:0;padding:0 1em;text-decoration:none;width:100%}input[type=email]:invalid,input[type=tel]:invalid,input[type=text]:invalid,input[type=password]:invalid,select:invalid,textarea:invalid{box-shadow:none}input[type=email]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=password]:focus,select:focus,textarea:focus{border-color:#2ebaae;box-shadow:inset 0 0 0 1px #2ebaae}.select-wrapper{text-decoration:none;display:block;position:relative}.select-wrapper:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important;color:rgba(160,160,160,.3);content:'\f078';pointer-events:none;position:absolute;right:0;text-align:center;top:0;width:2.75em}.select-wrapper select::-ms-expand{display:none}input[type=email],input[type=text],input[type=password],select{height:2.75em}textarea{padding:.75em 1em}input[type=checkbox],input[type=radio]{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;display:block;float:left;margin-right:-2em;opacity:0;width:1em;z-index:-1}input[type=checkbox]+label,input[type=radio]+label{text-decoration:none;color:#646464;cursor:pointer;display:inline-block;font-size:1em;font-weight:400;padding-left:2.4em;padding-right:.75em;position:relative}input[type=checkbox]+label:before,input[type=radio]+label:before{font-weight:400;background:rgba(160,160,160,.075);border:1px solid rgba(160,160,160,.3);content:'';display:inline-block;height:1.65em;line-height:1.58125em;position:absolute;width:1.65em}.icon,.image,.mini-post header{position:relative}.image.featured img,.image.fit,.image.fit img,.image.left img,.image.main,.image.main img,.image.right img{width:100%}input[type=checkbox]:checked+label:before,input[type=radio]:checked+label:before{background:#3c3b3b;border-color:#3c3b3b;color:#fff;content:'\f00c'}input[type=checkbox]:focus+label:before,input[type=radio]:focus+label:before{border-color:#2ebaae;box-shadow:0 0 0 1px #2ebaae}input[type=radio]+label:before{border-radius:100%}::-webkit-input-placeholder{color:#aaa!important;opacity:1}:-moz-placeholder{color:#aaa!important;opacity:1}::-moz-placeholder{color:#aaa!important;opacity:1}:-ms-input-placeholder{color:#aaa!important;opacity:1}.formerize-placeholder{color:#aaa!important;opacity:1}.icon{text-decoration:none;border-bottom:none}.icon:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important}.icon>.label{display:none}.icon.suffix:before{float:right}.image{border:0;display:inline-block}.image img,.image.fit,.image.main{display:block}.image.left,.image.right{max-width:40%}.image.left{float:left;padding:0 1.5em 1em 0;top:.25em}.image.right{float:right;padding:0 0 1em 1.5em;top:.25em}.image.fit{margin:0 0 2em}.image.featured{display:block;margin:0 0 3em;width:100%}@media screen and (max-width:736px){.image.featured{margin:0 0 1.5em}}.image.main{margin:0 0 3em}ol,ul{margin:0 0 2em}ol{list-style:decimal;padding-left:1.25em}ol li{padding-left:.25em}ul{list-style:disc;padding-left:1em}#header ul,#menu .links,ul.actions,ul.alt,ul.icons,ul.posts{list-style:none}ul.actions.fit li>*,ul.actions.vertical li>*{margin-bottom:0}ul li{padding-left:.5em}ul.alt{padding-left:0}ul.alt li{border-top:solid 1px rgba(160,160,160,.3);padding:.5em 0}ul.alt li:first-child{border-top:0;padding-top:0}ul.icons{cursor:default;padding-left:0}ul.icons li{display:inline-block;padding:0 1em 0 0}ul.icons li:last-child{padding-right:0}ul.icons li>*{text-decoration:none;border:0}ul.icons li>:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important}ul.icons li>* .label{display:none}ul.actions{cursor:default;padding-left:0}ul.actions li{display:inline-block;padding:0 1.5em 0 0;vertical-align:middle}ul.actions li:last-child{padding-right:0}ul.actions.pagination .next{text-decoration:none}ul.actions.pagination .next:after{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important;content:'\f054'}ul.actions.pagination .previous{text-decoration:none}ul.actions.pagination .previous:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important;content:'\f053'}.mini-post header .published,ul.posts article header .published{letter-spacing:.25em;text-transform:uppercase;font-family:Raleway,Helvetica,sans-serif}@media screen and (max-width:1280px){ul.actions.pagination{text-align:center}ul.actions.pagination .next,ul.actions.pagination .previous{min-width:20em}}@media screen and (max-width:736px){ul.actions.pagination .next,ul.actions.pagination .previous{min-width:18em}}ul.actions.small li{padding:0 1em 0 0}ul.actions.vertical li{display:block;padding:1.5em 0 0}ul.actions.vertical li:first-child{padding-top:0}ul.actions.vertical.small li{padding:1em 0 0}ul.actions.vertical.small li:first-child{padding-top:0}ul.actions.fit{display:table;margin-left:-1em;padding:0;table-layout:fixed;width:calc(100% + 1em)}ul.actions.fit li{display:table-cell;padding:0 0 0 1em}ul.actions.fit.small{margin-left:-.5em;width:calc(100% + .5em)}ul.actions.fit.small li{padding:0 0 0 .5em}@media screen and (max-width:480px){ul.actions{margin:0 0 2em}ul.actions li{padding:1em 0 0;display:block;text-align:center;width:100%}ul.actions li:first-child{padding-top:0}ul.actions li>*{width:100%;margin:0!important}ul.actions.small li{padding:.5em 0 0}ul.actions.small li:first-child{padding-top:0}}ul.posts{padding:0}ul.posts li{border-top:dotted 1px rgba(160,160,160,.3);margin:1.5em 0 0;padding:1.5em 0 0}ul.posts li:first-child{border-top:0;margin-top:0;padding-top:0}.mini-post,.post{background:#fff;border:1px solid rgba(160,160,160,.3)}ul.posts article{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-align-items:-moz-flex-start;-webkit-align-items:-webkit-flex-start;-ms-align-items:-ms-flex-start;align-items:flex-start;-moz-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}ul.posts article .image{display:block;margin-right:1.5em;min-width:4em;width:4em}ul.posts article .image img{width:100%}ul.posts article header{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-ms-flex:1}ul.posts article header h3{font-size:.7em;margin-top:.125em}ul.posts article header .published{display:block;font-size:.6em;font-weight:400;margin:-.625em 0 1.7em}ul.posts article header>:last-child{margin-bottom:0}dl{margin:0 0 2em}dl dt{display:block;font-weight:700;margin:0 0 1em}dl dd{margin-left:2em}.mini-post{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin:0 0 2em}.mini-post .image{overflow:hidden;width:100%}.mini-post .image img{-moz-transition:-moz-transform .2s ease-out;-webkit-transition:-webkit-transform .2s ease-out;-ms-transition:-ms-transform .2s ease-out;transition:transform .2s ease-out;width:100%}.mini-post .image:hover img{-moz-transform:scale(1.05);-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.mini-post header{padding:1.25em 4.25em .1em 1.25em;min-height:4em;-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.mini-post header h3{font-size:.7em}.mini-post header .published{display:block;font-size:.6em;font-weight:400;margin:-.625em 0 1.7em}.mini-post header .author{position:absolute;right:2em;top:2em}.mini-posts{margin:0 0 2em}@media screen and (max-width:1280px){.mini-posts{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;width:calc(100% + 2em)}.mini-posts>*{margin:2em 2em 0 0;width:calc(50% - 2em)}.mini-posts>:nth-child(-n+2){margin-top:0}}@media screen and (max-width:480px){.mini-posts{display:block;width:100%}.mini-posts>*{margin:0 0 2em;width:100%}}.post{padding:3em 3em 1em;margin:0 0 3em;position:relative}.post>footer .stats li,.post>header .meta{border-left:solid 1px rgba(160,160,160,.3)}.post>header{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;border-bottom:solid 1px rgba(160,160,160,.3);left:-3em;margin:-3em 0 3em;position:relative;width:calc(100% + 6em)}.post>header .title{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-ms-flex:1;padding:3.75em 3em 3.3em}.post>header .title h2{font-weight:900;font-size:1.5em}.post>header .title>:last-child{margin-bottom:0}.post>header .meta{padding:3.75em 3em 1.75em;min-width:17em;text-align:right;width:17em}.post>header .meta>*{margin:0 0 1em}.post>header .meta>:last-child{margin-bottom:0}.post>header .meta .published{color:#3c3b3b;display:block;font-family:Raleway,Helvetica,sans-serif;font-size:.7em;font-weight:800;letter-spacing:.25em;margin-top:.5em;text-transform:uppercase}.post>footer .stats li,header p{font-weight:400;font-family:Raleway,Helvetica,sans-serif;letter-spacing:.25em;text-transform:uppercase}.post>.image.featured{overflow:hidden}.post>.image.featured img{-moz-transition:-moz-transform .2s ease-out;-webkit-transition:-webkit-transform .2s ease-out;-ms-transition:-ms-transform .2s ease-out;transition:transform .2s ease-out}.post>.image.featured:hover img{-moz-transform:scale(1.05);-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.post>footer{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center}.post>footer .actions{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.post>footer .stats{cursor:default;list-style:none;padding:0}.post>footer .stats li{display:inline-block;font-size:.6em;line-height:1;margin:0 0 0 2em;padding:0 0 0 2em}.post>footer .stats li:first-child{border-left:0;margin-left:0;padding-left:0}.post>footer .stats li .icon{border-bottom:0}.post>footer .stats li .icon:before{color:rgba(160,160,160,.3);margin-right:.75em}@media screen and (max-width:980px){.post{border-left:0;border-right:0;left:-3em;width:calc(100% + (3em * 2))}.post>header{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:3.75em 3em 1.25em;border-left:0}.post>header .title{-ms-flex:0 1 auto;margin:0 0 2em;padding:0;text-align:center}.post>header .meta{-moz-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;border-left:0;margin:0 0 2em;padding:0;text-align:left;width:100%}.post>header .meta>*{border-left:solid 1px rgba(160,160,160,.3);margin-left:2em;padding-left:2em}.post>header .meta>:first-child{border-left:0;margin-left:0;padding-left:0}.post>header .meta .published{margin-bottom:0;margin-top:0}.post>header .meta .author{-moz-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;margin-bottom:0}.post>header .meta .author .name{margin:0 0 0 1.5em}.post>header .meta .author img{width:3.5em}}@media screen and (max-width:736px){.post{padding:1.5em 1.5em .1em;left:-1.5em;margin:0 0 2em;width:calc(100% + (1.5em * 2))}.post>header{padding:3em 1.5em .5em;left:-1.5em;margin:-1.5em 0 1.5em;width:calc(100% + 3em)}.post>header .title h2{font-size:1.1em}}@media screen and (max-width:480px){.post>header .meta{-moz-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.post>header .meta>*{border-left:0;margin:1em 0 0;padding-left:0}.post>header .meta .author .name{display:none}.post>.image.featured{margin-left:-1.5em;margin-top:calc(-1.5em - 1px);width:calc(100% + 3em)}.post>footer{-moz-align-items:stretch;-webkit-align-items:stretch;-ms-align-items:stretch;align-items:stretch;-moz-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.post>footer .stats{text-align:center}.post>footer .stats li{margin:0 0 0 1.25em;padding:0 0 0 1.25em}}article.special,section.special{text-align:center}header p{font-size:.7em;line-height:2.5;margin-top:-1em}.table-wrapper{-webkit-overflow-scrolling:touch;overflow-x:auto}table{border-collapse:collapse;border-spacing:0;margin:0 0 2em;width:100%}table tbody tr{border:1px solid rgba(160,160,160,.3);border-left:0;border-right:0}table tbody tr:nth-child(2n+1){background-color:rgba(160,160,160,.075)}table td{padding:.75em}table th{color:#3c3b3b;font-size:.9em;font-weight:700;padding:0 .75em .75em;text-align:left}table thead{border-bottom:solid 2px rgba(160,160,160,.3)}table tfoot{border-top:solid 2px rgba(160,160,160,.3)}table.alt{border-collapse:separate}table.alt tbody tr td{border:1px solid rgba(160,160,160,.3);border-left-width:0;border-top-width:0}table.alt tbody tr td:first-child{border-left-width:1px}#header .links,#header .links ul li{border-left:solid 1px rgba(160,160,160,.3)}table.alt tbody tr:first-child td{border-top-width:1px}table.alt thead{border-bottom:0}table.alt tfoot{border-top:0}body{padding-top:3.5em}#header{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-justify-content:space-between;-webkit-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;background-color:#fff;border-bottom:solid 1px rgba(160,160,160,.3);height:3.5em;left:0;line-height:3.5em;position:fixed;top:0;width:100%;z-index:10000}#header .links,#header h1{height:inherit;line-height:inherit}#header a{color:inherit;text-decoration:none}#header ul{margin:0;padding-left:0}#header ul li{display:inline-block;padding-left:0}#header h1{padding:0 0 0 1.5em}#header h1 a{font-size:.7em}#header .links{-moz-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;margin-left:1.5em;overflow:hidden;padding-left:1.5em}#header .links ul li{line-height:1;margin-left:1em;padding-left:1em}#header .main,#header .main ul,#header .main ul li,#header .main ul li>a:before{height:inherit;line-height:inherit}#header .links ul li:first-child{border-left:0;margin-left:0;padding-left:0}#header .main ul li,#menu{border-left:solid 1px rgba(160,160,160,.3)}#header .links ul li a{border-bottom:0;font-family:Raleway,Helvetica,sans-serif;font-size:.7em;font-weight:400;letter-spacing:.25em;text-transform:uppercase}#header .main{text-align:right}#header .main ul li>*{display:block;float:left}#header .main ul li>a{text-decoration:none;border-bottom:0;color:#aaa;overflow:hidden;position:relative;text-indent:4em;width:4em}#header .main ul li>a:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:FontAwesome;font-style:normal;font-weight:400;text-transform:none!important;display:block;left:0;position:absolute;text-align:center;text-indent:0;top:0;width:inherit}#header form{margin:0}#header form input{display:inline-block;height:2.5em;position:relative;top:-2px;vertical-align:middle}#header #search{-moz-transition:all .5s ease;-webkit-transition:all .5s ease;-ms-transition:all .5s ease;transition:all .5s ease;max-width:0;opacity:0;overflow:hidden;padding:0}#header #search input{width:12em}#header #search.visible{max-width:12.5em;opacity:1;padding:0 .5em 0 0}@media screen and (max-width:980px){#header .links{display:none}}@media screen and (max-width:736px){#header{height:2.75em;line-height:2.75em}#header h1{padding:0 0 0 1em}#header .main .search{display:none}}#wrapper{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;-moz-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-moz-transition:opacity .5s ease;-webkit-transition:opacity .5s ease;-ms-transition:opacity .5s ease;transition:opacity .5s ease;margin:0 auto;max-width:100%;opacity:1;padding:4.5em;width:90em}body.is-menu-visible #wrapper{opacity:.15}@media screen and (max-width:1680px){#wrapper{padding:3em}}@media screen and (max-width:736px){#wrapper{padding:1.5em}}#main{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-ms-flex:1;width:100%}#sidebar{margin-right:3em;min-width:22em;width:22em}#sidebar>*{border-top:solid 1px rgba(160,160,160,.3);margin:3em 0 0;padding:3em 0 0}#sidebar>:first-child{border-top:0;margin-top:0;padding-top:0}@media screen and (max-width:1280px){#wrapper{display:block}#sidebar{border-top:solid 1px rgba(160,160,160,.3);margin:3em 0 0;min-width:0;padding:3em 0 0;width:100%}}#intro .logo{border-bottom:0;display:inline-block;margin:0 0 1em;overflow:hidden;position:relative;width:4em}#intro .logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100px' height='100px' viewBox='0 0 100 100' preserveAspectRatio='none' zoomAndPan='disable'%3E%3Cpolygon points='0,0 100,0 100,25 50,0 0,25' style='fill:%23f4f4f4' /%3E%3Cpolygon points='0,100 100,100 100,75 50,100 0,75' style='fill:%23f4f4f4' /%3E%3C/svg%3E");background-position:top left;background-repeat:no-repeat;background-size:100% 100%;content:'';display:block;height:100%;left:0;position:absolute;top:0;width:100%}#intro .logo img{display:block;margin-left:-.25em;width:4.5em}#intro header h2{font-size:2em;font-weight:900}#footer .copyright,#menu .links>li a p{font-family:Raleway,Helvetica,sans-serif;font-weight:400;letter-spacing:.25em;text-transform:uppercase}#intro header p{font-size:.8em}@media screen and (max-width:1280px){#intro{margin:0 0 3em;text-align:center}#intro header h2{font-size:2em}#intro header p{font-size:.7em}}@media screen and (max-width:736px){#intro{margin:0 0 1.5em;padding:1.25em 0}#intro>:last-child{margin-bottom:0}#intro .logo{margin:0 0 .5em}#intro header h2{font-size:1.25em}#intro header>:last-child{margin-bottom:0}}#footer .icons{color:#aaa}#footer .copyright{color:#aaa;font-size:.5em}#menu{-moz-transform:translateX(25em);-webkit-transform:translateX(25em);-ms-transform:translateX(25em);transform:translateX(25em);-moz-transition:-moz-transform .5s ease,visibility .5s;-webkit-transition:-webkit-transform .5s ease,visibility .5s;-ms-transition:-ms-transform .5s ease,visibility .5s;transition:transform .5s ease,visibility .5s;-webkit-overflow-scrolling:touch;background:#fff;box-shadow:none;height:100%;max-width:80%;overflow-y:auto;position:fixed;right:0;top:0;visibility:hidden;width:25em;z-index:10002}#menu>*{border-top:solid 1px rgba(160,160,160,.3);padding:3em}#menu>*>:last-child{margin-bottom:0}#menu>:first-child{border-top:0}#menu .links{padding:0}#menu .links>li{border:0;border-top:dotted 1px rgba(160,160,160,.3);margin:1.5em 0 0;padding:1.5em 0 0}#menu .links>li a{display:block;border-bottom:0}#menu .links>li a h3{-moz-transition:color .2s ease;-webkit-transition:color .2s ease;-ms-transition:color .2s ease;transition:color .2s ease;font-size:.7em}#menu .links>li a p{font-size:.6em;margin-bottom:0;text-decoration:none}#menu .links>li a:hover h3{color:#2ebaae}#menu .links>li:first-child{border-top:0;margin-top:0;padding-top:0}body.is-menu-visible #menu{-moz-transform:translateX(0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);visibility:visible}@media screen and (max-width:736px){#menu>*{padding:1.5em}}#header .main .search input,#header .main ul li>a,b,body,input,select,strong,textarea{color:#000}.image.center-image img,pre{width:100%}pre{display:table;table-layout:fixed}#header .links a{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";filter:alpha(opacity=65);opacity:.65}#header .main ul li>a{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";filter:alpha(opacity=35);opacity:.35}#intro .icons a,#intro p{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";filter:alpha(opacity=60);opacity:.6}#sidebar #categories ul.posts li header,#sidebar #recent-posts ul.posts time,#sidebar .blurb p{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";filter:alpha(opacity=65);opacity:.65}article.post footer .stats,article.post header .meta p,article.post header .meta span,article.post header .title p{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";filter:alpha(opacity=70);opacity:.7}article.post h2,article.post h3,article.post h4,article.post p{color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=87)";filter:alpha(opacity=87);opacity:.87}#social-share-nav .share-btn h3,.share-btn{color:#fff}#header h2{font-size:inherit;height:inherit;line-height:inherit;padding:0 0 0 1.5em;white-space:nowrap}#header h2 a{font-size:.7em}#intro .intro-circle{border-radius:50%}.post>header .title h1{font-weight:900;font-size:1.5em}@media screen and (max-width:736px){#header h2{padding:0 0 0 1em}.post>header .title h1{font-size:1.1em}}@media screen and (max-width:480px){.post>.image.featured{margin-top:0}}blockquote p{margin-bottom:0}.image.center-image{max-width:50%;display:block;margin:auto;clear:both}.pagination .button{background:#fff}#social-share{position:relative;top:-.5em}#social-share ul{margin:0}#social-share .icons li{padding:0 0 10px!important}#social-share ul li p{display:none}#social-share .share-btn{padding:.5em;width:4em}.share-btn{display:inline-block;border:none;border-radius:4px;box-shadow:0 2px 0 0 rgba(0,0,0,.2);outline:0;text-align:center;text-decoration:none}.share-btn:hover{color:#fff!important}.share-btn:active{position:relative;top:2px;box-shadow:none;color:#e2e2e2;outline:0}.share-btn.twitter{background:#55acee}.share-btn.google-plus{background:#dd4b39}.share-btn.facebook{background:#3B5998}.share-btn.linkedin{background:#4875B4}.share-btn.stumbleupon{background:#EB4823}.share-btn.reddit{background:#ff5700}.share-btn.email{background:#444}.share-btn.twitter:hover{background:#4c9ad6}.share-btn.google-plus:hover{background:#c64333}.share-btn.facebook:hover{background:#2f4779}.share-btn.linkedin:hover{background:#4069a2}.share-btn.stumbleupon:hover{background:#d3401f}.share-btn.reddit:hover{background:#e54e00}.share-btn.email:hover{background:#363636}body.is-share-visible #wrapper{opacity:.15}#share-menu{-moz-transform:translateX(25em);-webkit-transform:translateX(25em);-ms-transform:translateX(25em);transform:translateX(25em);-moz-transition:-moz-transform .5s ease,visibility .5s;-webkit-transition:-webkit-transform .5s ease,visibility .5s;-ms-transition:-ms-transform .5s ease,visibility .5s;transition:transform .5s ease,visibility .5s;-webkit-overflow-scrolling:touch;background:#fff;border-left:solid 1px rgba(160,160,160,.3);box-shadow:none;height:100%;max-width:80%;overflow-y:auto;position:fixed;right:0;top:0;visibility:hidden;width:25em;z-index:10002}#share-menu>*{border-top:solid 1px rgba(160,160,160,.3);padding:3em}#share-menu>*>:last-child{margin-bottom:0}#share-menu>:first-child{border-top:0}#share-menu .links{list-style:none;padding:0}#share-menu .links>li{border:0;border-top:dotted 1px rgba(160,160,160,.3);margin:.7em 0 0;padding:1em 0 0}#share-menu .links>li a{display:block;border-bottom:0}#share-menu .links>li a h3{-moz-transition:color .2s ease;-webkit-transition:color .2s ease;-ms-transition:color .2s ease;transition:color .2s ease;font-size:.7em}#share-menu .links>li a p{font-family:Raleway,Helvetica,sans-serif;font-size:.6em;font-weight:400;letter-spacing:.25em;margin-bottom:0;text-decoration:none;text-transform:uppercase}#share-menu .links>li a:hover h3{color:#fff}#share-menu .links>li:first-child{border-top:0;margin-top:0;padding-top:0}body.is-share-visible #share-menu{-moz-transform:translateX(0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);visibility:visible}@media screen and (max-width:736px){#share-menu>*{padding:1.5em}}.post{margin:0 0 2em}#content img{max-width:100%}#content p a,#content ul li a{border-bottom:dotted 2px rgba(160,160,160,.65)}#content p a:hover{border-bottom-color:transparent}#content blockquote,#content p,#content ul{margin:0 0 1em}ul.pagination li{padding-top:1em}ul.pagination .button{line-height:2.5em;height:auto;white-space:normal;padding-top:1em;padding-bottom:1em}#back-to-top{background-color:#fff;bottom:5px;color:#aaa;display:none;position:fixed;right:5px}#back-to-top.btt-fade-out{-webkit-transition:opacity .3s 0s,visibility 0s 0s;-moz-transition:opacity .3s 0s,visibility 0s 0s;transition:opacity .3s 0s,visibility 0s 0s;opacity:.5}.hljs{display:block;overflow-x:auto;padding:.5em;background:#23241f}.hljs,.hljs-subst,.hljs-tag{color:#f8f8f2}.hljs-emphasis,.hljs-strong{color:#a8a8a2}.hljs-bullet,.hljs-link,.hljs-literal,.hljs-number,.hljs-quote,.hljs-regexp{color:#ae81ff}.hljs-code,.hljs-section,.hljs-selector-class,.hljs-title{color:#a6e22e}.hljs-strong{font-weight:700}.hljs-emphasis{font-style:italic}.hljs-attr,.hljs-keyword,.hljs-name,.hljs-selector-tag{color:#f92672}.hljs-attribute,.hljs-symbol{color:#66d9ef}.hljs-class .hljs-title,.hljs-params{color:#f8f8f2}.hljs-addition,.hljs-built_in,.hljs-builtin-name,.hljs-selector-attr,.hljs-selector-id,.hljs-selector-pseudo,.hljs-string,.hljs-template-variable,.hljs-type,.hljs-variable{color:#e6db74}.hljs-comment,.hljs-deletion,.hljs-meta{color:#75715e} diff --git a/static/css/monosocialiconsfont.css b/static/css/monosocialiconsfont.css deleted file mode 100755 index c2eb817..0000000 --- a/static/css/monosocialiconsfont.css +++ /dev/null @@ -1,25 +0,0 @@ -@font-face { - font-family: 'Mono Social Icons Font'; - src: url('../fonts/MonoSocialIconsFont-1.10.eot'); - src: url('../fonts/MonoSocialIconsFont-1.10.eot?#iefix') format('embedded-opentype'), - url('../fonts/MonoSocialIconsFont-1.10.woff') format('woff'), - url('../fonts/MonoSocialIconsFont-1.10.ttf') format('truetype'), - url('../fonts/MonoSocialIconsFont-1.10.svg#MonoSocialIconsFont') format('svg'); - src: url('../fonts/MonoSocialIconsFont-1.10.ttf') format('truetype'); - font-weight: normal; - font-style: normal; -} - -.symbol, a.symbol:before { - font-family: 'Mono Social Icons Font'; - -webkit-text-rendering: optimizeLegibility; - -moz-text-rendering: optimizeLegibility; - -ms-text-rendering: optimizeLegibility; - -o-text-rendering: optimizeLegibility; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-font-smoothing: antialiased; - -ms-font-smoothing: antialiased; - -o-font-smoothing: antialiased; - font-smoothing: antialiased; -} \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css deleted file mode 100644 index 8de4f4f..0000000 --- a/static/css/style.css +++ /dev/null @@ -1,895 +0,0 @@ -/* Reset */ - -html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; - margin: 0; - padding: 0 -} - -article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { - display: block -} - -body { - line-height: 1 -} - -blockquote, q { - quotes: none -} - -blockquote:before, blockquote:after, q:before, q:after { - content: none -} - -table { - border-collapse: collapse; - border-spacing: 0 -} - -*, *:before, *:after { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - - -/* Clearfix */ - -.clearfix:after { - content: ""; - display: table; - clear: both; -} - -.hidden { - display: none; -} - - -/* Icons */ - -@font-face { - font-family: 'icons'; - src: url('../fonts/icons.eot'); - src: url('../fonts/icons.eot#iefix') format('embedded-opentype'), url('../fonts/icons.woff') format('woff'), url('../fonts/icons.ttf') format('truetype'), url('../fonts/icons.svg#icons') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^="icon-"]:before, [class*=" icon-"]:before { - font-family: "icons"; - font-style: normal; - font-weight: normal; - speak: none; - display: inline-block; - text-decoration: inherit; - text-align: center; - font-variant: normal; - text-transform: none; - line-height: 1em; -} - -.icon-facebook:before { - content: '\e802'; -} - -.icon-facebook-squared:before { - content: '\e800'; -} - -.icon-twitter:before { - content: '\e801'; -} - -.icon-twitter-1:before { - content: '\e804'; -} - -.icon-facebook-circled:before { - content: '\e805'; -} - -.icon-twitter-circled:before { - content: '\e806'; -} - -.icon-facebook-rect:before { - content: '\e803'; -} - - -/* Spacing */ - -.post h1, h3, h4, h5, p, .post-body ul, #post-list li, pre { - margin-bottom: 20px; -} - - -/* Base */ - -html, body { - height: 100%; -} - -body { - font: 16px/1 "Helvetica Neue", Helvetica, Arial, sans-serif; - color: #666; - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; -} - -h1 { - font-size: 30px; - letter-spacing: -1px; - color: #222; - font-weight: bold; -} - -h2 { - font: italic 19px/1.3em Georgia, serif; - color: #bbb; -} - -.profile #wrapper { - padding: 100px 40px 0px; - max-width: 600px; - margin: 0 auto; -} - -.profile #header { - margin-bottom: 40px; - padding-bottom: 40px; - text-align: center; - position: relative; -} - -.profile #avatar { - display: inline-block; - width: 80px; - height: 80px; - border-radius: 50%; - margin-bottom: 20px; -} - -.profile h1 { - font-weight: 400; - letter-spacing: 0px; - font-size: 20px; - color: #222; -} - -.profile h2 { - font-size: 20px; - font-weight: 300; - color: #aaa; - margin-top: 10px; - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; - font-style: normal; -} - -nav.main-nav { - padding: 20px 20px 0; - /*max-width: 600px;*/ - /*width:100%;*/ - background: #fff; - background: rgba(255, 255, 255, .90); - margin: 0 auto; - text-align: right; - /*position: fixed;*/ - z-index: 100; -} - -nav.main-nav a { - top: 8px; - right: 6px; - padding: 8px 12px; - color: #5badf0; - font-size: 13px; - /*font-weight: bold;*/ - line-height: 1.35; - border-radius: 3px; -} - -nav.main-nav a.cta { - background: #5badf0; - color: #fff; - margin-left: 12px; -} - -#wrapper { - max-width: 600px; - margin: 0 auto; - padding: 60px 40px 100px 40px; -} - -#wrapper.home { - max-width: 600px; - margin: 0 auto; - padding: 0px 40px 20px 40px; -} - -.home #avatar { - float: right; - width: 40px; - height: 40px; - border-radius: 50%; -} - - -/* Typography */ - - -/*Accent color*/ - -a, #title, #post-list a:hover, #post-list li:hover .dates, #title:hover { - text-decoration: none; - color: #5badf0; - color: #5694f1; -} - -p a { - color: #5694f1; -} - - -/*Transitions*/ - -a, #post-nav a, #post-list a { - -webkit-transition: all 0.15s ease; - -moz-transition: all 0.15s ease; - -ms-transition: all 0.15s ease; - -o-transition: all 0.15s ease; - transition: all 0.15s ease; -} - -ul { - margin: 0; - padding: 0; -} - -li { - list-style-type: circle; - list-style-position: inside; -} - - -/* Line Height */ - -#post-body, p { - line-height: 1.7; -} - -b, strong { - font-weight: 500; - color: #1E2025; -} - -em, i { - font-style: italic; -} - -#title { - display: inline-block; - line-height: 100%; - font-weight: 500; - font-size: 19px; - margin: 0; - padding-bottom: 20px; -} - -.description { - float: right; - font: italic 14px/1.4em Georgia, serif; - color: #aaa; -} - -.home h1 { - font-size: 30px; - letter-spacing: -1px; - color: #222; - font-weight: bold; -} - -.home h2 { - font: italic 19px/1.3em Georgia, serif; - color: #bbb; -} - -.post header { - text-align: center; -} - -.post h1 { - margin-bottom: 20px; - color: #222; - font: 300 32px/1.4em "Helvetica Neue", Helvetica, Arial, sans-serif; -} - -.post h2 { - margin-bottom: 40px; - font: 300 24px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif; - color: #111; -} - -.post h2.headline { - font: normal 13px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif; - margin: -5px 0 40px 0; - color: #b2b9be; - font-size: 13px; - letter-spacing: 1px; - display: inline-block; -} - -.post h2.headline .tags { - font: normal 13px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif; - margin: -5px 0 40px 0; - color: #b2b9be; - font-size: 13px; - text-transform: uppercase; - letter-spacing: 2px; - margin-top: 5px; - display: block; -} - -#post-list h2 { - font: normal 17px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif; - color: #aaa; - max-width: 400px; - margin-top: 2px; -} - -h3, h4, h5 { - color: #333; -} - -h3 { - font-size: 20px; - font-weight: 400; -} - -h4 { - font-size: 16px; - font-weight: bold; -} - -h5 { - font-size: 15px; - font-weight: bold; -} - -h6 { - font-size: 13px; - font-weight: bold; - color: #666; - margin-bottom: 6px; -} - -p.small { - color: #bbb; - font-size: 14px; - line-height: 1.5; - display: block; - text-align: center; - margin-top: 20px; -} - -blockquote { - padding-left: 15px; - border-left: 3px solid #eee; -} - -hr { - display: block; - border: none; - height: 1px; - margin: 40px auto; - background: #eee; -} - -span.code { - font-family: Menlo, Monaco, Courier; - background-color: #EEE; - font-size: 14px; -} - -pre { - /*font-family: Menlo, Monaco, Courier;*/ - /*white-space: pre-wrap;*/ - overflow-x: scroll; - /*border: 1px solid #ddd;*/ - /*padding: 20px;*/ - /*background-color: #fdfdfd;*/ - /*font-size:14px;*/ - /*overflow: auto;*/ - /*border-radius: 3px;*/ - /*background: #272b2d;*/ - /*font-family: 'Source Code Pro', Menlo, monospace;*/ - /*font-size: 13px;*/ - /*line-height: 1.5em;*/ - /*font-weight: 500;*/ - /*color: #d0d4d7;*/ -} - -table { - width: 100%; - margin: 40px 0; - border-collapse: collapse; - font-size: 13px; - line-height: 1.5em; -} - -th, td { - text-align: left; - padding-right: 20px; - vertical-align: top; -} - -table td, td { - border-spacing: none; - border-style: solid; - padding: 10px 15px; - border-width: 1px 0 0 0; -} - -tr>td { - border-top: 1px solid #eaeaea; -} - -tr:nth-child(odd)>td { - background: #fcfcfc; -} - -thead th, th { - text-align: left; - padding: 10px 15px; - height: 20px; - font-size: 13px; - font-weight: bold; - color: #444; - border-bottom: 1px solid #dadadc; - cursor: default; - white-space: nowrap; -} - -img { - width: 100%; - max-width: 100%; - border-radius: 3px; -} - - -/* Made with Cactus Badge */ - -#badge { - position: absolute; - bottom: 8px; - right: 8px; - height: 48px; - width: 48px; -} - - -/*========================================= -Post List -=========================================== */ - -#post-list, #archive-list { - /*margin-top: 100px;*/ -} - -#post-list li, #archive-list li { - list-style-type: none; -} - -#post-list li:last-child { - margin-bottom: 0; -} - -#post-list li+li { - padding-top: 20px; - /*border-top: 1px solid #eee;*/ -} - -#post-list a { - color: #333; - display: block; - font: bold 19px/1.7 "Helvetica Neue", helvetica, Arial, sans-serif; -} - -#post-list .dates { - float: right; - position: relative; - top: 1px; - font: 300 17px/1.8 "Helvetica Neue", helvetica, Arial, sans-serif; - color: #bbb; -} - -#post-list-footer { - border-top: 1px solid #eee; - margin-top: 20px; - padding-top: 100px; -} - -#archive-link { - display: inline-block; - font-size: 13px; - font-weight: bold; - border-radius: 4px; - padding: 3px 10px 6px; - box-shadow: 0 0 0 1px hsla(207, 83%, 80%, 1); -} - -#archive-link:hover { - background: #5694f1; - color: #fff; - box-shadow: 0 0 0 1px #5694f1; -} - -#archive-link span { - position: relative; - top: 0; - font-size: 17px; -} - -#footer { - /*box-shadow: inset 0 1px 0 #eee;*/ - padding: 40px 0 0 0; - margin-top: 100px; -} - - -/* Post Page */ - -#header { - /*border-bottom: 1px solid #eee;*/ -} - -.post { - margin: 80px 0 0 0; -} - -#post-meta { - font-size: 13px; - font-weight: bold; - line-height: 1.4; - border-top: 1px solid #eee; - padding-top: 40px; - margin-bottom: 40px; - padding-bottom: 40px; - margin-top: 40px; - color: #444; - border-bottom: 1px solid #eee; -} - -#post-meta div span { - color: #aaa; - font-weight: 500; - display: block; -} - -#post-meta div span.dark { - color: #1E2025; -} - -#post-meta div { - margin: 0 25px 0 0; - float: left; -} - -#sharing { - float: right; - margin: -2px; -} - -#sharing a { - font-size: 20px; - font-size: 23px; - margin-left: 1px; - margin-top: 4px; - color: #d4d4d4; - display: inline-block; - vertical-align: middle; -} - -#sharing a:hover { - /*color: #444;*/ - opacity: 0.8; -} - - -/* Post Navigation */ - -#post-nav { - /*border-top:1px solid #eee;*/ - text-align: center; - padding-top: 20px; - font-size: 13px; - font-weight: 500; - margin-top: 40px; -} - -#post-nav span { - -webkit-transition: all 0.1s linear; - -moz-transition: all 0.1s linear; - -ms-transition: all 0.1s linear; - -o-transition: all 0.1s linear; - transition: all 0.1s linear; - position: relative; -} - -#post-nav span.prev { - float: left; -} - -#post-nav span.next { - float: right; -} - -#post-nav span .arrow { - position: relative; - padding: 1px; -} - -#post-nav span.prev:hover .arrow { - left: -4px; -} - -#post-nav span.next:hover .arrow { - right: -4px; -} - -#post-nav span.prev:hover { - left: -3px; -} - -#post-nav span.next:hover { - right: -3px; -} - - -/* Archive */ - -h1.archive { - margin-bottom: 0px; -} - -h2.month { - width: 100%; - font: bold 13px/1 "Helvetica Neue", helvetica, Arial, sans-serif; - text-transform: uppercase; - margin-top: 40px; - margin-bottom: 10px; - padding-bottom: 10px; - border-bottom: 1px solid #eee; -} - -#archive-list li:last-child { - margin-bottom: 0; -} - -#archive-list a { - display: block; - font: bold 17px/1.7 "Helvetica Neue", helvetica, Arial, sans-serif; - color: #333; -} - -#archive-list .dates { - float: right; - position: relative; - top: 1px; - font: 300 17px/1.7 "Helvetica Neue", helvetica, Arial, sans-serif; - color: #bbb; -} - -#archive-list li a:hover, #archive-list li:hover .dates { - color: #5694f1; -} - -#post-meta img.avatar { - height: 36px; - width: 36px; - float: left; - border-radius: 50%; - margin-top: 3px; - margin-right: 20px; - box-shadow: 0 0 0 3px #fff, 0 0 0 4px #eee; -} - -#post-list.archive.readmore { - margin-top: 100px; -} - -#post-list.archive.readmore h3 { - font: 400 20px "Helvetica Neue", Helvetica, Arial, sans-serif; - margin-bottom: 30px; -} - -#post-list.archive.readmore a { - font: 400 16px/1.6 "Helvetica Neue", helvetica, Arial, sans-serif; - color: #5694f1; -} - -#post-list.archive.readmore a:hover { - opacity: 0.8; -} - -#post-list.archive.readmore .dates { - font: 300 16px/1.6 "Helvetica Neue", helvetica, Arial, sans-serif; -} - -#disqus_thread, #ds-thread { - margin-top: 100px; -} - -#sharing a.facebook { - background: #4361b3; -} - -#sharing a.twitter { - background: #4fafed; -} - -#sharing a { - font-size: 20px; - font-size: 13px; - font-weight: bold; - color: #fff; - padding: 6px 10px; - border-radius: 4px; - margin-left: 2px; -} - - -/* Media Queries */ - -@media screen and (max-width: 540px) { - #wrapper { - padding: 20px 20px 20px 20px; - } - #header { - margin-bottom: 60px; - /*border-bottom: 1px solid #eee; */ - } - .post { - margin: 40px 0; - } - #footer { - margin-top: 60px; - } - #post-list, #archive-list { - margin-top: 0; - } - #post-meta { - margin-top: 60px; - } - #title { - font-size: 17px; - } - #post-list .dates { - display: none; - } - #post-list-footer { - margin-top: 20px; - padding-top: 40px; - } - h1 { - font-size: 26px; - } - .post h2.headline { - font-size: 13px; - } - .post h1 { - font-size: 24px; - } - .post h2 { - font-size: 20px; - } -} - -.archive { - margin: 0 0 50px 0; - font-size: 16px; -} - -.archive .post-item { - padding: 10px 10px; - /*border-left: 1px solid #cacaca;*/ - overflow-x: hidden; - white-space:nowrap; -} - -.archive .post-time { - display: inline-block; - width: 60px; - margin: 0 10px; - color: #8a8a8a; -} - -@media screen and (max-width: 768px) { - .archive .post-time { - margin: 5px 0; - width: auto; - font-size: 13px; - display: block; - } -} - -.archive .post-link { - color: #8a8a8a; -} - -.archive .post-item:hover { - color: #5694f1; - padding-left: 13px; - /*border-left: 1px solid #5badf0;*/ - transition: 0.3s ease-out; -} -.archive .post-item:hover .post-time,.archive .post-item:hover .post-link { - color: #5694f1; -} - -.fa.fa-heart:hover { - color: #ff3356; - transition: 0.7s ease-out; - cursor: pointer; -} - - -/* CUSTOM ADDITIONS */ - -#social { - display: flex; - flex-direction: row; - justify-content: center; -} - -a.symbol { - color: #cdd4da; - font-size: 2rem; - text-decoration: none; - margin-right: 0.3rem; -} - -a.symbol:hover { - color: #BCD4DA; -} - -code { - font-family: Menlo, Monaco, Courier; - background-color: #EEE; - font-size: 14px; - padding: 4px; - font-weight: 600; -} - - -/** - * tags page - */ - -#wrapper.tags { - padding: 0px 40px 20px 40px; -} -.page-tags { - text-align: center; -} - -.page-tags .tags { - font: "Helvetica Neue", Helvetica, Arial, sans-serif; - margin: 10px 15px; - text-transform: uppercase; - letter-spacing: 1px; - display: inline-block; -} - -.page-tags .tags a { - color: #666; -} - -.page-tags .tags:hover a { - color: #5694f1; -} diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..e53125d Binary files /dev/null and b/static/favicon.png differ diff --git a/static/fonts/MonoSocialIconsFont-1.10.eot b/static/fonts/MonoSocialIconsFont-1.10.eot deleted file mode 100755 index 100b2b3..0000000 Binary files a/static/fonts/MonoSocialIconsFont-1.10.eot and /dev/null differ diff --git a/static/fonts/MonoSocialIconsFont-1.10.otf b/static/fonts/MonoSocialIconsFont-1.10.otf deleted file mode 100755 index 6debb04..0000000 Binary files a/static/fonts/MonoSocialIconsFont-1.10.otf and /dev/null differ diff --git a/static/fonts/MonoSocialIconsFont-1.10.svg b/static/fonts/MonoSocialIconsFont-1.10.svg deleted file mode 100755 index ead38ff..0000000 --- a/static/fonts/MonoSocialIconsFont-1.10.svg +++ /dev/null @@ -1,1013 +0,0 @@ - - - - -Created by Ivan Drinchev. OFL license -This is a custom SVG font generated by IcoMoon. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/fonts/MonoSocialIconsFont-1.10.ttf b/static/fonts/MonoSocialIconsFont-1.10.ttf deleted file mode 100755 index 20cdb85..0000000 Binary files a/static/fonts/MonoSocialIconsFont-1.10.ttf and /dev/null differ diff --git a/static/fonts/MonoSocialIconsFont-1.10.woff b/static/fonts/MonoSocialIconsFont-1.10.woff deleted file mode 100755 index 47df3a9..0000000 Binary files a/static/fonts/MonoSocialIconsFont-1.10.woff and /dev/null differ diff --git a/static/fonts/icons.svg b/static/fonts/icons.svg deleted file mode 100644 index 83f103b..0000000 --- a/static/fonts/icons.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - -Copyright (C) 2013 by original authors @ fontello.com - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/fonts/icons.ttf b/static/fonts/icons.ttf deleted file mode 100644 index 1b4e5a0..0000000 Binary files a/static/fonts/icons.ttf and /dev/null differ diff --git a/static/fonts/icons.woff b/static/fonts/icons.woff deleted file mode 100644 index a6469ba..0000000 Binary files a/static/fonts/icons.woff and /dev/null differ diff --git a/static/images/avatar.png b/static/images/avatar.png deleted file mode 100644 index df6eb2c..0000000 Binary files a/static/images/avatar.png and /dev/null differ diff --git a/static/images/avatar@2x.png b/static/images/avatar@2x.png deleted file mode 100644 index 32f153a..0000000 Binary files a/static/images/avatar@2x.png and /dev/null differ diff --git a/static/images/favicon.ico b/static/images/favicon.ico deleted file mode 100644 index b6e20c6..0000000 Binary files a/static/images/favicon.ico and /dev/null differ diff --git a/static/js/jquery.tagcloud.js b/static/js/jquery.tagcloud.js deleted file mode 100755 index 4e5d5a3..0000000 --- a/static/js/jquery.tagcloud.js +++ /dev/null @@ -1,92 +0,0 @@ -/*! - * jquery.tagcloud.js - * A Simple Tag Cloud Plugin for JQuery - * - * https://github.com/addywaddy/jquery.tagcloud.js - * created by Adam Groves - */ -(function($) { - - /*global jQuery*/ - "use strict"; - - var compareWeights = function(a, b) - { - return a - b; - }; - - // Converts hex to an RGB array - var toRGB = function(code) { - if (code.length === 4) { - code = code.replace(/(\w)(\w)(\w)/gi, "\$1\$1\$2\$2\$3\$3"); - } - var hex = /(\w{2})(\w{2})(\w{2})/.exec(code); - return [parseInt(hex[1], 16), parseInt(hex[2], 16), parseInt(hex[3], 16)]; - }; - - // Converts an RGB array to hex - var toHex = function(ary) { - return "#" + jQuery.map(ary, function(i) { - var hex = i.toString(16); - hex = (hex.length === 1) ? "0" + hex : hex; - return hex; - }).join(""); - }; - - var colorIncrement = function(color, range) { - return jQuery.map(toRGB(color.end), function(n, i) { - return (n - toRGB(color.start)[i])/range; - }); - }; - - var tagColor = function(color, increment, weighting) { - var rgb = jQuery.map(toRGB(color.start), function(n, i) { - var ref = Math.round(n + (increment[i] * weighting)); - if (ref > 255) { - ref = 255; - } else { - if (ref < 0) { - ref = 0; - } - } - return ref; - }); - return toHex(rgb); - }; - - $.fn.tagcloud = function(options) { - - var opts = $.extend({}, $.fn.tagcloud.defaults, options); - var tagWeights = this.map(function(){ - return $(this).attr("rel"); - }); - tagWeights = jQuery.makeArray(tagWeights).sort(compareWeights); - var lowest = tagWeights[0]; - var highest = tagWeights.pop(); - var range = highest - lowest; - if(range === 0) {range = 1;} - // Sizes - var fontIncr, colorIncr; - if (opts.size) { - fontIncr = (opts.size.end - opts.size.start)/range; - } - // Colors - if (opts.color) { - colorIncr = colorIncrement (opts.color, range); - } - return this.each(function() { - var weighting = $(this).attr("rel") - lowest; - if (opts.size) { - $(this).css({"font-size": opts.size.start + (weighting * fontIncr) + opts.size.unit}); - } - if (opts.color) { - $(this).css({"color": tagColor(opts.color, colorIncr, weighting)}); - } - }); - }; - - $.fn.tagcloud.defaults = { - size: {start: 14, end: 18, unit: "pt"} - }; - -})(jQuery); diff --git a/static/js/main.js b/static/js/main.js deleted file mode 100644 index c5d6c85..0000000 --- a/static/js/main.js +++ /dev/null @@ -1,36 +0,0 @@ -// To make images retina, add a class "2x" to the img element -// and add a @2x.png image. Assumes jquery is loaded. - -function isRetina() { - var mediaQuery = "(-webkit-min-device-pixel-ratio: 1.5),\ - (min--moz-device-pixel-ratio: 1.5),\ - (-o-min-device-pixel-ratio: 3/2),\ - (min-resolution: 1.5dppx)"; - - if (window.devicePixelRatio > 1) - return true; - - if (window.matchMedia && window.matchMedia(mediaQuery).matches) - return true; - - return false; -}; - - -function retina() { - - if (!isRetina()) - return; - - $("img.2x").map(function(i, image) { - - var path = $(image).attr("src"); - - path = path.replace(".png", "@2x.png"); - path = path.replace(".jpg", "@2x.jpg"); - - $(image).attr("src", path); - }); -}; - -$(document).ready(retina); \ No newline at end of file diff --git a/static/js/main.min.js.bak b/static/js/main.min.js.bak deleted file mode 100644 index aee9268..0000000 --- a/static/js/main.min.js.bak +++ /dev/null @@ -1,6 +0,0 @@ -!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){function n(e){var t="length"in e&&e.length,n=ie.type(e);return"function"===n||ie.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e}function r(e,t,n){if(ie.isFunction(t))return ie.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return ie.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(pe.test(t))return ie.filter(t,e,n);t=ie.filter(t,e)}return ie.grep(e,function(e){return ie.inArray(e,t)>=0!==n})}function i(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function a(e){var t=we[e]={};return ie.each(e.match(ye)||[],function(e,n){t[n]=!0}),t}function o(){he.addEventListener?(he.removeEventListener("DOMContentLoaded",s,!1),e.removeEventListener("load",s,!1)):(he.detachEvent("onreadystatechange",s),e.detachEvent("onload",s))}function s(){(he.addEventListener||"load"===event.type||"complete"===he.readyState)&&(o(),ie.ready())}function l(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(Ce,"-$1").toLowerCase();if(n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:Ne.test(n)?ie.parseJSON(n):n}catch(i){}ie.data(e,t,n)}else n=void 0}return n}function c(e){var t;for(t in e)if(("data"!==t||!ie.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function u(e,t,n,r){if(ie.acceptData(e)){var i,a,o=ie.expando,s=e.nodeType,l=s?ie.cache:e,c=s?e[o]:e[o]&&o;if(c&&l[c]&&(r||l[c].data)||void 0!==n||"string"!=typeof t)return c||(c=s?e[o]=Z.pop()||ie.guid++:o),l[c]||(l[c]=s?{}:{toJSON:ie.noop}),("object"==typeof t||"function"==typeof t)&&(r?l[c]=ie.extend(l[c],t):l[c].data=ie.extend(l[c].data,t)),a=l[c],r||(a.data||(a.data={}),a=a.data),void 0!==n&&(a[ie.camelCase(t)]=n),"string"==typeof t?(i=a[t],null==i&&(i=a[ie.camelCase(t)])):i=a,i}}function d(e,t,n){if(ie.acceptData(e)){var r,i,a=e.nodeType,o=a?ie.cache:e,s=a?e[ie.expando]:ie.expando;if(o[s]){if(t&&(r=n?o[s]:o[s].data)){ie.isArray(t)?t=t.concat(ie.map(t,ie.camelCase)):t in r?t=[t]:(t=ie.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;for(;i--;)delete r[t[i]];if(n?!c(r):!ie.isEmptyObject(r))return}(n||(delete o[s].data,c(o[s])))&&(a?ie.cleanData([e],!0):ne.deleteExpando||o!=o.window?delete o[s]:o[s]=null)}}}function p(){return!0}function f(){return!1}function h(){try{return he.activeElement}catch(e){}}function m(e){var t=De.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function g(e,t){var n,r,i=0,a=typeof e.getElementsByTagName!==ke?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==ke?e.querySelectorAll(t||"*"):void 0;if(!a)for(a=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||ie.nodeName(r,t)?a.push(r):ie.merge(a,g(r,t));return void 0===t||t&&ie.nodeName(e,t)?ie.merge([e],a):a}function b(e){Me.test(e.type)&&(e.defaultChecked=e.checked)}function v(e,t){return ie.nodeName(e,"table")&&ie.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function y(e){return e.type=(null!==ie.find.attr(e,"type"))+"/"+e.type,e}function w(e){var t=Ke.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function x(e,t){for(var n,r=0;null!=(n=e[r]);r++)ie._data(n,"globalEval",!t||ie._data(t[r],"globalEval"))}function _(e,t){if(1===t.nodeType&&ie.hasData(e)){var n,r,i,a=ie._data(e),o=ie._data(t,a),s=a.events;if(s){delete o.handle,o.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)ie.event.add(t,n,s[n][r])}o.data&&(o.data=ie.extend({},o.data))}}function k(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!ne.noCloneEvent&&t[ie.expando]){i=ie._data(t);for(r in i.events)ie.removeEvent(t,r,i.handle);t.removeAttribute(ie.expando)}"script"===n&&t.text!==e.text?(y(t).text=e.text,w(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),ne.html5Clone&&e.innerHTML&&!ie.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Me.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function N(t,n){var r,i=ie(n.createElement(t)).appendTo(n.body),a=e.getDefaultComputedStyle&&(r=e.getDefaultComputedStyle(i[0]))?r.display:ie.css(i[0],"display");return i.detach(),a}function C(e){var t=he,n=Je[e];return n||(n=N(e,t),"none"!==n&&n||(Ge=(Ge||ie("