diff --git a/package-lock.json b/package-lock.json index b0bb481..dd729ae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12390,6 +12390,14 @@ "resolved": "https://registry.npmjs.org/react-ga/-/react-ga-2.7.0.tgz", "integrity": "sha512-AjC7UOZMvygrWTc2hKxTDvlMXEtbmA0IgJjmkhgmQQ3RkXrWR11xEagLGFGaNyaPnmg24oaIiaNPnEoftUhfXA==" }, + "react-icons": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-3.9.0.tgz", + "integrity": "sha512-gKbYKR+4QsD3PmIHLAM9TDDpnaTsr3XZeK1NTAb6WQQ+gxEdJ0xuCgLq0pxXdS7Utg2AIpcVhM1ut/jlDhcyNg==", + "requires": { + "camelcase": "^5.0.0" + } + }, "react-is": { "version": "16.12.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.12.0.tgz", diff --git a/package.json b/package.json index f383b56..908e837 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "react": "^16.12.0", "react-dom": "^16.12.0", "react-ga": "^2.7.0", + "react-icons": "^3.9.0", "react-router-dom": "^5.1.2", "react-scripts": "3.3.0", "react-toggle": "^4.1.1" diff --git a/public/moon.svg b/public/moon.svg deleted file mode 100644 index b7ce9ee..0000000 --- a/public/moon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/react.svg b/public/react.svg deleted file mode 100644 index 9907d5d..0000000 --- a/public/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/sun.svg b/public/sun.svg deleted file mode 100644 index d8b03ff..0000000 --- a/public/sun.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/weather-react-app (1).png b/public/weather-react-app (1).png new file mode 100644 index 0000000..029eb7f Binary files /dev/null and b/public/weather-react-app (1).png differ diff --git a/public/weather-react-app-dark.png b/public/weather-react-app-dark.png new file mode 100644 index 0000000..f558ff1 Binary files /dev/null and b/public/weather-react-app-dark.png differ diff --git a/public/weather-react-app-light.png b/public/weather-react-app-light.png new file mode 100644 index 0000000..fd3d1c3 Binary files /dev/null and b/public/weather-react-app-light.png differ diff --git a/public/weather-react-app.png b/public/weather-react-app.png index 06a34f2..029eb7f 100644 Binary files a/public/weather-react-app.png and b/public/weather-react-app.png differ diff --git a/src/components/footer/FooterComponent.js b/src/components/footer/FooterComponent.js index 5a3d8bd..4927baf 100644 --- a/src/components/footer/FooterComponent.js +++ b/src/components/footer/FooterComponent.js @@ -3,6 +3,7 @@ import {ThemeContext} from '../../context/ThemeContext' import moment from 'moment-timezone' import {Link} from 'react-router-dom' import {Event} from '../../utils/ReactAnalytics' +import {FaReact} from 'react-icons/fa' const FooterComponent = () => { const {theme, colorTheme} = useContext(ThemeContext) @@ -34,15 +35,17 @@ const FooterComponent = () => {

Made with  - + ❤️  using  - React + role='img' + aria-label='React' + className='text-lg text-react'> + +  by  👨‍💻 diff --git a/src/components/icon/IconComponent.js b/src/components/icon/IconComponent.js index 4a730a4..b0e1903 100644 --- a/src/components/icon/IconComponent.js +++ b/src/components/icon/IconComponent.js @@ -1,13 +1,18 @@ import React from 'react' import {PropTypes} from 'prop-types' +import {FaSun, FaMoon} from 'react-icons/fa' const IconComponent = ({iconType}) => { return (

{iconType === 'light' ? ( - Light +

+ +

) : ( - Dark +

+ +

)}
) diff --git a/src/components/search/SearchComponent.js b/src/components/search/SearchComponent.js index bb7308a..f60f761 100644 --- a/src/components/search/SearchComponent.js +++ b/src/components/search/SearchComponent.js @@ -1,6 +1,17 @@ import React, {useContext} from 'react' import {ThemeContext} from '../../context/ThemeContext' import {PropTypes} from 'prop-types' +import {FiSearch} from 'react-icons/fi' +import {IoIosArrowUp, IoIosArrowDown} from 'react-icons/io' + +const IconComponent = ({type, color}) => { + const TYPES = { + search: , + up: , + down: + } + return

{TYPES[type]}

+} const SearchComponent = props => { const {theme, colorTheme} = useContext(ThemeContext) @@ -8,7 +19,7 @@ const SearchComponent = props => {
- +
{ className='flex right-0 absolute top-0 mr-4 mt-3 cursor-pointer' onClick={props.caretClicked}> {props.showAddresses ? ( - + ) : ( - + )}
) : null} diff --git a/src/components/weather/DayComponent.js b/src/components/weather/DayComponent.js index 9b10d84..2b53a1d 100644 --- a/src/components/weather/DayComponent.js +++ b/src/components/weather/DayComponent.js @@ -5,6 +5,7 @@ import {fToC} from '../../utils/TemperatureConvert' import getWeatherIcon from '../../utils/WeatherIcon' import FormatTime from './../../utils/FormatTime' import {PropTypes} from 'prop-types' +import WeatherIconComponent from './WeatherIconComponent' const DayComponent = props => { const {day, index, selectedIndex} = props @@ -38,11 +39,11 @@ const DayComponent = props => { {/* icon */}
{getWeatherIcon(day).startsWith('wi') ? ( - +

+ +

) : ( { index === selectedIndex ? 'flex' : 'flex' } flex-row justify-around sm:justify-center sm:flex sm:flex-col w-5/12 sm:w-full font-light mt-1`}>
- +

+ +

{FormatTime(day.sunriseTime, day.timezone, 'h:mm')}

- +

+ +

{FormatTime(day.sunsetTime, day.timezone, 'HH:mm')}

diff --git a/src/components/weather/InfoComponent.js b/src/components/weather/InfoComponent.js index 370cbea..f30d5e2 100644 --- a/src/components/weather/InfoComponent.js +++ b/src/components/weather/InfoComponent.js @@ -6,6 +6,7 @@ import {isUndefined, isEmpty} from 'lodash-es' import moment from 'moment-timezone' import {PropTypes} from 'prop-types' import {Event} from '../../utils/ReactAnalytics' +import {FaRegHeart, FaHeart} from 'react-icons/fa' const InfoComponent = ({address, latlong, urbanArea, weatherCurrent}) => { const {updateFavorites} = useContext(AddressContext) @@ -188,11 +189,7 @@ const InfoComponent = ({address, latlong, urbanArea, weatherCurrent}) => { : 'Favorite this city' } onClick={favoritesHandler}> - {isBookmarked() ? ( - - ) : ( - - )} + {isBookmarked() ? : }
diff --git a/src/components/weather/InfoDetailComponent.js b/src/components/weather/InfoDetailComponent.js index c502eec..be32d0f 100644 --- a/src/components/weather/InfoDetailComponent.js +++ b/src/components/weather/InfoDetailComponent.js @@ -6,6 +6,8 @@ import {mToK} from '../../utils/SpeedConvert' import {fToC} from '../../utils/TemperatureConvert' import {PropTypes} from 'prop-types' import {Event} from '../../utils/ReactAnalytics' +import {FiPercent} from 'react-icons/fi' +import WeatherIconComponent from './WeatherIconComponent' const InfoDetailComponent = ({weatherCurrent}) => { const {weatherUnit, updateWeatherUnit} = useContext(WeatherUnitContext) @@ -41,26 +43,25 @@ const InfoDetailComponent = ({weatherCurrent}) => {
-
-
- {getWeatherIcon(weatherCurrent).startsWith('wi') ? ( - - ) : ( - icon - )} -
-

- {weatherCurrent.summary} -

+
+ {getWeatherIcon(weatherCurrent).startsWith('wi') ? ( +

+ { + + } +

+ ) : ( + icon + )}
@@ -89,22 +90,29 @@ const InfoDetailComponent = ({weatherCurrent}) => {
+

+ {weatherCurrent.summary} +

-

- Humidity:  - {Math.round(weatherCurrent.humidity)}% -

+
+

Humidity:

  +

{Math.round(weatherCurrent.humidity)}

+

+ +

+

Wind:  {computedSpeedValue()}{' '}

-

- +

+ { + + }

diff --git a/src/components/weather/TimeframeComponent.js b/src/components/weather/TimeframeComponent.js index 94d1811..eb8b81d 100644 --- a/src/components/weather/TimeframeComponent.js +++ b/src/components/weather/TimeframeComponent.js @@ -5,6 +5,7 @@ import {fToC} from '../../utils/TemperatureConvert' import getWeatherIcon from '../../utils/WeatherIcon' import FormatTime from './../../utils/FormatTime' import {PropTypes} from 'prop-types' +import WeatherIconComponent from './WeatherIconComponent' const TimeframeComponent = ({Timeframe}) => { const {weatherUnit} = useContext(WeatherUnitContext) @@ -27,9 +28,9 @@ const TimeframeComponent = ({Timeframe}) => { }`}>

{getWeatherIcon(Timeframe).startsWith('wi') ? ( - +

+ +

) : ( { /> )}
-

+

{computedTempValue('temperature')} o

diff --git a/src/components/weather/WeatherIconComponent.js b/src/components/weather/WeatherIconComponent.js new file mode 100644 index 0000000..86e2f25 --- /dev/null +++ b/src/components/weather/WeatherIconComponent.js @@ -0,0 +1,44 @@ +import React from 'react' +import { + WiDirectionUp, + WiDirectionUpRight, + WiDirectionRight, + WiDirectionDownRight, + WiDirectionDown, + WiDirectionDownLeft, + WiDirectionLeft, + WiDirectionUpLeft, + WiDayFog, + WiNightFog, + WiDayCloudyWindy, + WiNightAltCloudyWindy, + WiTornado, + WiNa, + WiSunrise, + WiSunset +} from 'react-icons/wi' + +const WeatherIconComponent = ({type}) => { + const ICON_TYPES = { + 'wi-day-fog': , + 'wi-night-fog': , + 'wi-day-windy': , + 'wi-night-windy': , + 'wi-tornado': , + 'wi-na': , + up: , + 'up-right': , + right: , + 'down-right': , + down: , + 'down-left': , + left: , + 'up-left': , + sunrise: , + sunset: + } + + return ICON_TYPES[type] || +} + +export default WeatherIconComponent diff --git a/src/fonts/OFL.txt b/src/fonts/OFL.txt deleted file mode 100644 index 40c4e24..0000000 --- a/src/fonts/OFL.txt +++ /dev/null @@ -1,94 +0,0 @@ -Copyright (c) 2016, Google Inc. -Copyright (c) 2018, Florian Karsten (fonts.floriankarsten.com) - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/fonts/fontello.svg b/src/fonts/fontello.svg deleted file mode 100644 index 93f46cc..0000000 --- a/src/fonts/fontello.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - -Copyright (C) 2020 by original authors @ fontello.com - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/fonts/fontello.ttf b/src/fonts/fontello.ttf deleted file mode 100644 index 9ea6467..0000000 Binary files a/src/fonts/fontello.ttf and /dev/null differ diff --git a/src/fonts/fontello.woff b/src/fonts/fontello.woff deleted file mode 100644 index f2eadcb..0000000 Binary files a/src/fonts/fontello.woff and /dev/null differ diff --git a/src/fonts/fontello.woff2 b/src/fonts/fontello.woff2 deleted file mode 100644 index 7659912..0000000 Binary files a/src/fonts/fontello.woff2 and /dev/null differ diff --git a/src/fonts/weathericons-regular-webfont.ttf b/src/fonts/weathericons-regular-webfont.ttf deleted file mode 100644 index 948f0a5..0000000 Binary files a/src/fonts/weathericons-regular-webfont.ttf and /dev/null differ diff --git a/src/fonts/weathericons-regular-webfont.woff b/src/fonts/weathericons-regular-webfont.woff deleted file mode 100644 index e0b2f94..0000000 Binary files a/src/fonts/weathericons-regular-webfont.woff and /dev/null differ diff --git a/src/fonts/weathericons-regular-webfont.woff2 b/src/fonts/weathericons-regular-webfont.woff2 deleted file mode 100644 index bb0c19d..0000000 Binary files a/src/fonts/weathericons-regular-webfont.woff2 and /dev/null differ diff --git a/src/index.js b/src/index.js index 7188266..0283a6c 100644 --- a/src/index.js +++ b/src/index.js @@ -24,4 +24,4 @@ ReactDOM.render(app, document.getElementById('root')) // If you want your app to work offline and load faster, you can change // unregister() to register() below. Note this comes with some pitfalls. // Learn more about service workers: https://bit.ly/CRA-PWA -serviceWorker.register() +serviceWorker.unregister() diff --git a/src/sass/styles.scss b/src/sass/styles.scss index 48ef8d6..8b947f1 100644 --- a/src/sass/styles.scss +++ b/src/sass/styles.scss @@ -19,5 +19,4 @@ @import 'themes/default'; // 7. Vendors -@import 'vendors/normalize', 'vendors/icons', 'vendors/weather-icons', - 'vendors/tailwind'; +@import 'vendors/normalize', 'vendors/tailwind'; diff --git a/src/sass/vendors/_icons.scss b/src/sass/vendors/_icons.scss deleted file mode 100644 index fbb3072..0000000 --- a/src/sass/vendors/_icons.scss +++ /dev/null @@ -1,66 +0,0 @@ -@font-face { - font-family: 'fontello'; - src: url('../fonts/fontello.woff2?10498634') format('woff2'), - url('../fonts/fontello.woff?10498634') format('woff'), - url('../fonts/fontello.ttf?10498634') format('truetype'), - url('../fonts/fontello.svg?10498634#fontello') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^='icon-']:before, -[class*=' icon-']:before { - font-family: 'fontello'; - font-style: normal; - font-weight: normal; - - display: inline-block; - text-decoration: inherit; - width: 1em; - margin-right: 0.2em; - text-align: center; - /* opacity: .8; */ - - /* For safety - reset parent styles, that can break glyph codes*/ - font-variant: normal; - text-transform: none; - - /* fix buttons height, for twitter bootstrap */ - line-height: 1em; - - /* Animation center compensation - margins should be symmetric */ - /* remove if not needed */ - margin-left: 0.2em; - - /* you can be more comfortable with increased icons size */ - /* font-size: 120%; */ - - /* Font smoothing. That was taken from TWBS */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - - /* Uncomment for 3D effect */ - text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); -} - -.icon-heart:before { - content: '\e800'; -} -.icon-heart-empty:before { - content: '\e801'; -} -.icon-search:before { - content: '\e802'; -} -.icon-up-arrow:before { - content: '\e803'; -} -.icon-down-arrow:before { - content: '\e804'; -} -.icon-cw:before { - content: '\e809'; -} -.icon-percent:before { - content: '\f295'; -} diff --git a/src/sass/vendors/_weather-icons.scss b/src/sass/vendors/_weather-icons.scss deleted file mode 100644 index 3508f3c..0000000 --- a/src/sass/vendors/_weather-icons.scss +++ /dev/null @@ -1,2085 +0,0 @@ -/*! - * Weather Icons 2.0.8 - * Updated September 19, 2015 - * Weather themed icons for Bootstrap - * Author - Erik Flowers - erik@helloerik.com - * Email: erik@helloerik.com - * Twitter: http://twitter.com/Erik_UX - * ------------------------------------------------------------------------------ - * Maintained at http://erikflowers.github.io/weather-icons - * - * License - * ------------------------------------------------------------------------------ - * - Font licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - CSS, SCSS and LESS are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Inspired by and works great as a companion with Font Awesome - * "Font Awesome by Dave Gandy - http://fontawesome.io" - */ -@font-face { - font-family: 'weathericons'; - src: url('../fonts/weathericons-regular-webfont.woff2') format('woff2'), - url('../fonts/weathericons-regular-webfont.woff') format('woff'), - url('../fonts/weathericons-regular-webfont.ttf') format('truetype'); - font-weight: normal; - font-style: normal; -} - -.wi { - display: inline-block; - font-family: 'weathericons'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.wi-fw { - text-align: center; - width: 1.4em; -} - -.wi-rotate-90 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} - -.wi-rotate-180 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} - -.wi-rotate-270 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} - -.wi-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); -} - -.wi-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); -} - -.wi-day-sunny:before { - content: '\f00d'; -} - -.wi-day-cloudy:before { - content: '\f002'; -} - -.wi-day-cloudy-gusts:before { - content: '\f000'; -} - -.wi-day-cloudy-windy:before { - content: '\f001'; -} - -.wi-day-fog:before { - content: '\f003'; -} - -.wi-day-hail:before { - content: '\f004'; -} - -.wi-day-haze:before { - content: '\f0b6'; -} - -.wi-day-lightning:before { - content: '\f005'; -} - -.wi-day-rain:before { - content: '\f008'; -} - -.wi-day-rain-mix:before { - content: '\f006'; -} - -.wi-day-rain-wind:before { - content: '\f007'; -} - -.wi-day-showers:before { - content: '\f009'; -} - -.wi-day-sleet:before { - content: '\f0b2'; -} - -.wi-day-sleet-storm:before { - content: '\f068'; -} - -.wi-day-snow:before { - content: '\f00a'; -} - -.wi-day-snow-thunderstorm:before { - content: '\f06b'; -} - -.wi-day-snow-wind:before { - content: '\f065'; -} - -.wi-day-sprinkle:before { - content: '\f00b'; -} - -.wi-day-storm-showers:before { - content: '\f00e'; -} - -.wi-day-sunny-overcast:before { - content: '\f00c'; -} - -.wi-day-thunderstorm:before { - content: '\f010'; -} - -.wi-day-windy:before { - content: '\f085'; -} - -.wi-solar-eclipse:before { - content: '\f06e'; -} - -.wi-hot:before { - content: '\f072'; -} - -.wi-day-cloudy-high:before { - content: '\f07d'; -} - -.wi-day-light-wind:before { - content: '\f0c4'; -} - -.wi-night-clear:before { - content: '\f02e'; -} - -.wi-night-alt-cloudy:before { - content: '\f086'; -} - -.wi-night-alt-cloudy-gusts:before { - content: '\f022'; -} - -.wi-night-alt-cloudy-windy:before { - content: '\f023'; -} - -.wi-night-alt-hail:before { - content: '\f024'; -} - -.wi-night-alt-lightning:before { - content: '\f025'; -} - -.wi-night-alt-rain:before { - content: '\f028'; -} - -.wi-night-alt-rain-mix:before { - content: '\f026'; -} - -.wi-night-alt-rain-wind:before { - content: '\f027'; -} - -.wi-night-alt-showers:before { - content: '\f029'; -} - -.wi-night-alt-sleet:before { - content: '\f0b4'; -} - -.wi-night-alt-sleet-storm:before { - content: '\f06a'; -} - -.wi-night-alt-snow:before { - content: '\f02a'; -} - -.wi-night-alt-snow-thunderstorm:before { - content: '\f06d'; -} - -.wi-night-alt-snow-wind:before { - content: '\f067'; -} - -.wi-night-alt-sprinkle:before { - content: '\f02b'; -} - -.wi-night-alt-storm-showers:before { - content: '\f02c'; -} - -.wi-night-alt-thunderstorm:before { - content: '\f02d'; -} - -.wi-night-cloudy:before { - content: '\f031'; -} - -.wi-night-cloudy-gusts:before { - content: '\f02f'; -} - -.wi-night-cloudy-windy:before { - content: '\f030'; -} - -.wi-night-fog:before { - content: '\f04a'; -} - -.wi-night-hail:before { - content: '\f032'; -} - -.wi-night-lightning:before { - content: '\f033'; -} - -.wi-night-partly-cloudy:before { - content: '\f083'; -} - -.wi-night-rain:before { - content: '\f036'; -} - -.wi-night-rain-mix:before { - content: '\f034'; -} - -.wi-night-rain-wind:before { - content: '\f035'; -} - -.wi-night-showers:before { - content: '\f037'; -} - -.wi-night-sleet:before { - content: '\f0b3'; -} - -.wi-night-sleet-storm:before { - content: '\f069'; -} - -.wi-night-snow:before { - content: '\f038'; -} - -.wi-night-snow-thunderstorm:before { - content: '\f06c'; -} - -.wi-night-snow-wind:before { - content: '\f066'; -} - -.wi-night-sprinkle:before { - content: '\f039'; -} - -.wi-night-storm-showers:before { - content: '\f03a'; -} - -.wi-night-thunderstorm:before { - content: '\f03b'; -} - -.wi-lunar-eclipse:before { - content: '\f070'; -} - -.wi-stars:before { - content: '\f077'; -} - -.wi-storm-showers:before { - content: '\f01d'; -} - -.wi-thunderstorm:before { - content: '\f01e'; -} - -.wi-night-alt-cloudy-high:before { - content: '\f07e'; -} - -.wi-night-cloudy-high:before { - content: '\f080'; -} - -.wi-night-alt-partly-cloudy:before { - content: '\f081'; -} - -.wi-cloud:before { - content: '\f041'; -} - -.wi-cloudy:before { - content: '\f013'; -} - -.wi-cloudy-gusts:before { - content: '\f011'; -} - -.wi-cloudy-windy:before { - content: '\f012'; -} - -.wi-fog:before { - content: '\f014'; -} - -.wi-hail:before { - content: '\f015'; -} - -.wi-rain:before { - content: '\f019'; -} - -.wi-rain-mix:before { - content: '\f017'; -} - -.wi-rain-wind:before { - content: '\f018'; -} - -.wi-showers:before { - content: '\f01a'; -} - -.wi-sleet:before { - content: '\f0b5'; -} - -.wi-snow:before { - content: '\f01b'; -} - -.wi-sprinkle:before { - content: '\f01c'; -} - -.wi-storm-showers:before { - content: '\f01d'; -} - -.wi-thunderstorm:before { - content: '\f01e'; -} - -.wi-snow-wind:before { - content: '\f064'; -} - -.wi-snow:before { - content: '\f01b'; -} - -.wi-smog:before { - content: '\f074'; -} - -.wi-smoke:before { - content: '\f062'; -} - -.wi-lightning:before { - content: '\f016'; -} - -.wi-raindrops:before { - content: '\f04e'; -} - -.wi-raindrop:before { - content: '\f078'; -} - -.wi-dust:before { - content: '\f063'; -} - -.wi-snowflake-cold:before { - content: '\f076'; -} - -.wi-windy:before { - content: '\f021'; -} - -.wi-strong-wind:before { - content: '\f050'; -} - -.wi-sandstorm:before { - content: '\f082'; -} - -.wi-earthquake:before { - content: '\f0c6'; -} - -.wi-fire:before { - content: '\f0c7'; -} - -.wi-flood:before { - content: '\f07c'; -} - -.wi-meteor:before { - content: '\f071'; -} - -.wi-tsunami:before { - content: '\f0c5'; -} - -.wi-volcano:before { - content: '\f0c8'; -} - -.wi-hurricane:before { - content: '\f073'; -} - -.wi-tornado:before { - content: '\f056'; -} - -.wi-small-craft-advisory:before { - content: '\f0cc'; -} - -.wi-gale-warning:before { - content: '\f0cd'; -} - -.wi-storm-warning:before { - content: '\f0ce'; -} - -.wi-hurricane-warning:before { - content: '\f0cf'; -} - -.wi-wind-direction:before { - content: '\f0b1'; -} - -.wi-alien:before { - content: '\f075'; -} - -.wi-celsius:before { - content: '\f03c'; -} - -.wi-fahrenheit:before { - content: '\f045'; -} - -.wi-degrees:before { - content: '\f042'; -} - -.wi-thermometer:before { - content: '\f055'; -} - -.wi-thermometer-exterior:before { - content: '\f053'; -} - -.wi-thermometer-internal:before { - content: '\f054'; -} - -.wi-cloud-down:before { - content: '\f03d'; -} - -.wi-cloud-up:before { - content: '\f040'; -} - -.wi-cloud-refresh:before { - content: '\f03e'; -} - -.wi-horizon:before { - content: '\f047'; -} - -.wi-horizon-alt:before { - content: '\f046'; -} - -.wi-sunrise:before { - content: '\f051'; -} - -.wi-sunset:before { - content: '\f052'; -} - -.wi-moonrise:before { - content: '\f0c9'; -} - -.wi-moonset:before { - content: '\f0ca'; -} - -.wi-refresh:before { - content: '\f04c'; -} - -.wi-refresh-alt:before { - content: '\f04b'; -} - -.wi-umbrella:before { - content: '\f084'; -} - -.wi-barometer:before { - content: '\f079'; -} - -.wi-humidity:before { - content: '\f07a'; -} - -.wi-na:before { - content: '\f07b'; -} - -.wi-train:before { - content: '\f0cb'; -} - -.wi-moon-new:before { - content: '\f095'; -} - -.wi-moon-waxing-crescent-1:before { - content: '\f096'; -} - -.wi-moon-waxing-crescent-2:before { - content: '\f097'; -} - -.wi-moon-waxing-crescent-3:before { - content: '\f098'; -} - -.wi-moon-waxing-crescent-4:before { - content: '\f099'; -} - -.wi-moon-waxing-crescent-5:before { - content: '\f09a'; -} - -.wi-moon-waxing-crescent-6:before { - content: '\f09b'; -} - -.wi-moon-first-quarter:before { - content: '\f09c'; -} - -.wi-moon-waxing-gibbous-1:before { - content: '\f09d'; -} - -.wi-moon-waxing-gibbous-2:before { - content: '\f09e'; -} - -.wi-moon-waxing-gibbous-3:before { - content: '\f09f'; -} - -.wi-moon-waxing-gibbous-4:before { - content: '\f0a0'; -} - -.wi-moon-waxing-gibbous-5:before { - content: '\f0a1'; -} - -.wi-moon-waxing-gibbous-6:before { - content: '\f0a2'; -} - -.wi-moon-full:before { - content: '\f0a3'; -} - -.wi-moon-waning-gibbous-1:before { - content: '\f0a4'; -} - -.wi-moon-waning-gibbous-2:before { - content: '\f0a5'; -} - -.wi-moon-waning-gibbous-3:before { - content: '\f0a6'; -} - -.wi-moon-waning-gibbous-4:before { - content: '\f0a7'; -} - -.wi-moon-waning-gibbous-5:before { - content: '\f0a8'; -} - -.wi-moon-waning-gibbous-6:before { - content: '\f0a9'; -} - -.wi-moon-third-quarter:before { - content: '\f0aa'; -} - -.wi-moon-waning-crescent-1:before { - content: '\f0ab'; -} - -.wi-moon-waning-crescent-2:before { - content: '\f0ac'; -} - -.wi-moon-waning-crescent-3:before { - content: '\f0ad'; -} - -.wi-moon-waning-crescent-4:before { - content: '\f0ae'; -} - -.wi-moon-waning-crescent-5:before { - content: '\f0af'; -} - -.wi-moon-waning-crescent-6:before { - content: '\f0b0'; -} - -.wi-moon-alt-new:before { - content: '\f0eb'; -} - -.wi-moon-alt-waxing-crescent-1:before { - content: '\f0d0'; -} - -.wi-moon-alt-waxing-crescent-2:before { - content: '\f0d1'; -} - -.wi-moon-alt-waxing-crescent-3:before { - content: '\f0d2'; -} - -.wi-moon-alt-waxing-crescent-4:before { - content: '\f0d3'; -} - -.wi-moon-alt-waxing-crescent-5:before { - content: '\f0d4'; -} - -.wi-moon-alt-waxing-crescent-6:before { - content: '\f0d5'; -} - -.wi-moon-alt-first-quarter:before { - content: '\f0d6'; -} - -.wi-moon-alt-waxing-gibbous-1:before { - content: '\f0d7'; -} - -.wi-moon-alt-waxing-gibbous-2:before { - content: '\f0d8'; -} - -.wi-moon-alt-waxing-gibbous-3:before { - content: '\f0d9'; -} - -.wi-moon-alt-waxing-gibbous-4:before { - content: '\f0da'; -} - -.wi-moon-alt-waxing-gibbous-5:before { - content: '\f0db'; -} - -.wi-moon-alt-waxing-gibbous-6:before { - content: '\f0dc'; -} - -.wi-moon-alt-full:before { - content: '\f0dd'; -} - -.wi-moon-alt-waning-gibbous-1:before { - content: '\f0de'; -} - -.wi-moon-alt-waning-gibbous-2:before { - content: '\f0df'; -} - -.wi-moon-alt-waning-gibbous-3:before { - content: '\f0e0'; -} - -.wi-moon-alt-waning-gibbous-4:before { - content: '\f0e1'; -} - -.wi-moon-alt-waning-gibbous-5:before { - content: '\f0e2'; -} - -.wi-moon-alt-waning-gibbous-6:before { - content: '\f0e3'; -} - -.wi-moon-alt-third-quarter:before { - content: '\f0e4'; -} - -.wi-moon-alt-waning-crescent-1:before { - content: '\f0e5'; -} - -.wi-moon-alt-waning-crescent-2:before { - content: '\f0e6'; -} - -.wi-moon-alt-waning-crescent-3:before { - content: '\f0e7'; -} - -.wi-moon-alt-waning-crescent-4:before { - content: '\f0e8'; -} - -.wi-moon-alt-waning-crescent-5:before { - content: '\f0e9'; -} - -.wi-moon-alt-waning-crescent-6:before { - content: '\f0ea'; -} - -.wi-moon-0:before { - content: '\f095'; -} - -.wi-moon-1:before { - content: '\f096'; -} - -.wi-moon-2:before { - content: '\f097'; -} - -.wi-moon-3:before { - content: '\f098'; -} - -.wi-moon-4:before { - content: '\f099'; -} - -.wi-moon-5:before { - content: '\f09a'; -} - -.wi-moon-6:before { - content: '\f09b'; -} - -.wi-moon-7:before { - content: '\f09c'; -} - -.wi-moon-8:before { - content: '\f09d'; -} - -.wi-moon-9:before { - content: '\f09e'; -} - -.wi-moon-10:before { - content: '\f09f'; -} - -.wi-moon-11:before { - content: '\f0a0'; -} - -.wi-moon-12:before { - content: '\f0a1'; -} - -.wi-moon-13:before { - content: '\f0a2'; -} - -.wi-moon-14:before { - content: '\f0a3'; -} - -.wi-moon-15:before { - content: '\f0a4'; -} - -.wi-moon-16:before { - content: '\f0a5'; -} - -.wi-moon-17:before { - content: '\f0a6'; -} - -.wi-moon-18:before { - content: '\f0a7'; -} - -.wi-moon-19:before { - content: '\f0a8'; -} - -.wi-moon-20:before { - content: '\f0a9'; -} - -.wi-moon-21:before { - content: '\f0aa'; -} - -.wi-moon-22:before { - content: '\f0ab'; -} - -.wi-moon-23:before { - content: '\f0ac'; -} - -.wi-moon-24:before { - content: '\f0ad'; -} - -.wi-moon-25:before { - content: '\f0ae'; -} - -.wi-moon-26:before { - content: '\f0af'; -} - -.wi-moon-27:before { - content: '\f0b0'; -} - -.wi-time-1:before { - content: '\f08a'; -} - -.wi-time-2:before { - content: '\f08b'; -} - -.wi-time-3:before { - content: '\f08c'; -} - -.wi-time-4:before { - content: '\f08d'; -} - -.wi-time-5:before { - content: '\f08e'; -} - -.wi-time-6:before { - content: '\f08f'; -} - -.wi-time-7:before { - content: '\f090'; -} - -.wi-time-8:before { - content: '\f091'; -} - -.wi-time-9:before { - content: '\f092'; -} - -.wi-time-10:before { - content: '\f093'; -} - -.wi-time-11:before { - content: '\f094'; -} - -.wi-time-12:before { - content: '\f089'; -} - -.wi-direction-up:before { - content: '\f058'; -} - -.wi-direction-up-right:before { - content: '\f057'; -} - -.wi-direction-right:before { - content: '\f04d'; -} - -.wi-direction-down-right:before { - content: '\f088'; -} - -.wi-direction-down:before { - content: '\f044'; -} - -.wi-direction-down-left:before { - content: '\f043'; -} - -.wi-direction-left:before { - content: '\f048'; -} - -.wi-direction-up-left:before { - content: '\f087'; -} - -.wi-wind-beaufort-0:before { - content: '\f0b7'; -} - -.wi-wind-beaufort-1:before { - content: '\f0b8'; -} - -.wi-wind-beaufort-2:before { - content: '\f0b9'; -} - -.wi-wind-beaufort-3:before { - content: '\f0ba'; -} - -.wi-wind-beaufort-4:before { - content: '\f0bb'; -} - -.wi-wind-beaufort-5:before { - content: '\f0bc'; -} - -.wi-wind-beaufort-6:before { - content: '\f0bd'; -} - -.wi-wind-beaufort-7:before { - content: '\f0be'; -} - -.wi-wind-beaufort-8:before { - content: '\f0bf'; -} - -.wi-wind-beaufort-9:before { - content: '\f0c0'; -} - -.wi-wind-beaufort-10:before { - content: '\f0c1'; -} - -.wi-wind-beaufort-11:before { - content: '\f0c2'; -} - -.wi-wind-beaufort-12:before { - content: '\f0c3'; -} - -.wi-yahoo-0:before { - content: '\f056'; -} - -.wi-yahoo-1:before { - content: '\f00e'; -} - -.wi-yahoo-2:before { - content: '\f073'; -} - -.wi-yahoo-3:before, -.wi-yahoo-4:before { - content: '\f01e'; -} - -.wi-yahoo-5:before, -.wi-yahoo-6:before, -.wi-yahoo-7:before { - content: '\f017'; -} - -.wi-yahoo-8:before { - content: '\f015'; -} - -.wi-yahoo-9:before { - content: '\f01a'; -} - -.wi-yahoo-10:before { - content: '\f015'; -} - -.wi-yahoo-11:before, -.wi-yahoo-12:before { - content: '\f01a'; -} - -.wi-yahoo-13:before { - content: '\f01b'; -} - -.wi-yahoo-14:before { - content: '\f00a'; -} - -.wi-yahoo-15:before { - content: '\f064'; -} - -.wi-yahoo-16:before { - content: '\f01b'; -} - -.wi-yahoo-17:before { - content: '\f015'; -} - -.wi-yahoo-18:before { - content: '\f017'; -} - -.wi-yahoo-19:before { - content: '\f063'; -} - -.wi-yahoo-20:before { - content: '\f014'; -} - -.wi-yahoo-21:before { - content: '\f021'; -} - -.wi-yahoo-22:before { - content: '\f062'; -} - -.wi-yahoo-23:before, -.wi-yahoo-24:before { - content: '\f050'; -} - -.wi-yahoo-25:before { - content: '\f076'; -} - -.wi-yahoo-26:before { - content: '\f013'; -} - -.wi-yahoo-27:before { - content: '\f031'; -} - -.wi-yahoo-28:before { - content: '\f002'; -} - -.wi-yahoo-29:before { - content: '\f031'; -} - -.wi-yahoo-30:before { - content: '\f002'; -} - -.wi-yahoo-31:before { - content: '\f02e'; -} - -.wi-yahoo-32:before { - content: '\f00d'; -} - -.wi-yahoo-33:before { - content: '\f083'; -} - -.wi-yahoo-34:before { - content: '\f00c'; -} - -.wi-yahoo-35:before { - content: '\f017'; -} - -.wi-yahoo-36:before { - content: '\f072'; -} - -.wi-yahoo-37:before, -.wi-yahoo-38:before, -.wi-yahoo-39:before { - content: '\f00e'; -} - -.wi-yahoo-40:before { - content: '\f01a'; -} - -.wi-yahoo-41:before { - content: '\f064'; -} - -.wi-yahoo-42:before { - content: '\f01b'; -} - -.wi-yahoo-43:before { - content: '\f064'; -} - -.wi-yahoo-44:before { - content: '\f00c'; -} - -.wi-yahoo-45:before { - content: '\f00e'; -} - -.wi-yahoo-46:before { - content: '\f01b'; -} - -.wi-yahoo-47:before { - content: '\f00e'; -} - -.wi-yahoo-3200:before { - content: '\f077'; -} - -.wi-forecast-io-clear-day:before { - content: '\f00d'; -} - -.wi-forecast-io-clear-night:before { - content: '\f02e'; -} - -.wi-forecast-io-rain:before { - content: '\f019'; -} - -.wi-forecast-io-snow:before { - content: '\f01b'; -} - -.wi-forecast-io-sleet:before { - content: '\f0b5'; -} - -.wi-forecast-io-wind:before { - content: '\f050'; -} - -.wi-forecast-io-fog:before { - content: '\f014'; -} - -.wi-forecast-io-cloudy:before { - content: '\f013'; -} - -.wi-forecast-io-partly-cloudy-day:before { - content: '\f002'; -} - -.wi-forecast-io-partly-cloudy-night:before { - content: '\f031'; -} - -.wi-forecast-io-hail:before { - content: '\f015'; -} - -.wi-forecast-io-thunderstorm:before { - content: '\f01e'; -} - -.wi-forecast-io-tornado:before { - content: '\f056'; -} - -.wi-wmo4680-0:before, -.wi-wmo4680-00:before { - content: '\f055'; -} - -.wi-wmo4680-1:before, -.wi-wmo4680-01:before { - content: '\f013'; -} - -.wi-wmo4680-2:before, -.wi-wmo4680-02:before { - content: '\f055'; -} - -.wi-wmo4680-3:before, -.wi-wmo4680-03:before { - content: '\f013'; -} - -.wi-wmo4680-4:before, -.wi-wmo4680-04:before, -.wi-wmo4680-5:before, -.wi-wmo4680-05:before, -.wi-wmo4680-10:before, -.wi-wmo4680-11:before { - content: '\f014'; -} - -.wi-wmo4680-12:before { - content: '\f016'; -} - -.wi-wmo4680-18:before { - content: '\f050'; -} - -.wi-wmo4680-20:before { - content: '\f014'; -} - -.wi-wmo4680-21:before, -.wi-wmo4680-22:before { - content: '\f017'; -} - -.wi-wmo4680-23:before { - content: '\f019'; -} - -.wi-wmo4680-24:before { - content: '\f01b'; -} - -.wi-wmo4680-25:before { - content: '\f015'; -} - -.wi-wmo4680-26:before { - content: '\f01e'; -} - -.wi-wmo4680-27:before, -.wi-wmo4680-28:before, -.wi-wmo4680-29:before { - content: '\f063'; -} - -.wi-wmo4680-30:before, -.wi-wmo4680-31:before, -.wi-wmo4680-32:before, -.wi-wmo4680-33:before, -.wi-wmo4680-34:before, -.wi-wmo4680-35:before { - content: '\f014'; -} - -.wi-wmo4680-40:before { - content: '\f017'; -} - -.wi-wmo4680-41:before { - content: '\f01c'; -} - -.wi-wmo4680-42:before { - content: '\f019'; -} - -.wi-wmo4680-43:before { - content: '\f01c'; -} - -.wi-wmo4680-44:before { - content: '\f019'; -} - -.wi-wmo4680-45:before, -.wi-wmo4680-46:before { - content: '\f015'; -} - -.wi-wmo4680-47:before, -.wi-wmo4680-48:before { - content: '\f01b'; -} - -.wi-wmo4680-50:before, -.wi-wmo4680-51:before { - content: '\f01c'; -} - -.wi-wmo4680-52:before, -.wi-wmo4680-53:before { - content: '\f019'; -} - -.wi-wmo4680-54:before, -.wi-wmo4680-55:before, -.wi-wmo4680-56:before { - content: '\f076'; -} - -.wi-wmo4680-57:before { - content: '\f01c'; -} - -.wi-wmo4680-58:before { - content: '\f019'; -} - -.wi-wmo4680-60:before, -.wi-wmo4680-61:before { - content: '\f01c'; -} - -.wi-wmo4680-62:before, -.wi-wmo4680-63:before { - content: '\f019'; -} - -.wi-wmo4680-64:before, -.wi-wmo4680-65:before, -.wi-wmo4680-66:before { - content: '\f015'; -} - -.wi-wmo4680-67:before, -.wi-wmo4680-68:before { - content: '\f017'; -} - -.wi-wmo4680-70:before, -.wi-wmo4680-71:before, -.wi-wmo4680-72:before, -.wi-wmo4680-73:before { - content: '\f01b'; -} - -.wi-wmo4680-74:before, -.wi-wmo4680-75:before, -.wi-wmo4680-76:before { - content: '\f076'; -} - -.wi-wmo4680-77:before { - content: '\f01b'; -} - -.wi-wmo4680-78:before { - content: '\f076'; -} - -.wi-wmo4680-80:before { - content: '\f019'; -} - -.wi-wmo4680-81:before { - content: '\f01c'; -} - -.wi-wmo4680-82:before, -.wi-wmo4680-83:before { - content: '\f019'; -} - -.wi-wmo4680-84:before { - content: '\f01d'; -} - -.wi-wmo4680-85:before, -.wi-wmo4680-86:before, -.wi-wmo4680-87:before { - content: '\f017'; -} - -.wi-wmo4680-89:before { - content: '\f015'; -} - -.wi-wmo4680-90:before { - content: '\f016'; -} - -.wi-wmo4680-91:before { - content: '\f01d'; -} - -.wi-wmo4680-92:before, -.wi-wmo4680-93:before { - content: '\f01e'; -} - -.wi-wmo4680-94:before { - content: '\f016'; -} - -.wi-wmo4680-95:before, -.wi-wmo4680-96:before { - content: '\f01e'; -} - -.wi-wmo4680-99:before { - content: '\f056'; -} - -.wi-owm-200:before, -.wi-owm-201:before, -.wi-owm-202:before { - content: '\f01e'; -} - -.wi-owm-210:before, -.wi-owm-211:before, -.wi-owm-212:before, -.wi-owm-221:before { - content: '\f016'; -} - -.wi-owm-230:before, -.wi-owm-231:before, -.wi-owm-232:before { - content: '\f01e'; -} - -.wi-owm-300:before, -.wi-owm-301:before { - content: '\f01c'; -} - -.wi-owm-302:before { - content: '\f019'; -} - -.wi-owm-310:before { - content: '\f017'; -} - -.wi-owm-311:before, -.wi-owm-312:before { - content: '\f019'; -} - -.wi-owm-313:before { - content: '\f01a'; -} - -.wi-owm-314:before { - content: '\f019'; -} - -.wi-owm-321:before, -.wi-owm-500:before { - content: '\f01c'; -} - -.wi-owm-501:before, -.wi-owm-502:before, -.wi-owm-503:before, -.wi-owm-504:before { - content: '\f019'; -} - -.wi-owm-511:before { - content: '\f017'; -} - -.wi-owm-520:before, -.wi-owm-521:before, -.wi-owm-522:before { - content: '\f01a'; -} - -.wi-owm-531:before { - content: '\f01d'; -} - -.wi-owm-600:before, -.wi-owm-601:before { - content: '\f01b'; -} - -.wi-owm-602:before { - content: '\f0b5'; -} - -.wi-owm-611:before, -.wi-owm-612:before, -.wi-owm-615:before, -.wi-owm-616:before, -.wi-owm-620:before { - content: '\f017'; -} - -.wi-owm-621:before, -.wi-owm-622:before { - content: '\f01b'; -} - -.wi-owm-701:before { - content: '\f014'; -} - -.wi-owm-711:before { - content: '\f062'; -} - -.wi-owm-721:before { - content: '\f0b6'; -} - -.wi-owm-731:before { - content: '\f063'; -} - -.wi-owm-741:before { - content: '\f014'; -} - -.wi-owm-761:before, -.wi-owm-762:before { - content: '\f063'; -} - -.wi-owm-771:before { - content: '\f011'; -} - -.wi-owm-781:before { - content: '\f056'; -} - -.wi-owm-800:before { - content: '\f00d'; -} - -.wi-owm-801:before, -.wi-owm-802:before { - content: '\f011'; -} - -.wi-owm-803:before { - content: '\f012'; -} - -.wi-owm-804:before { - content: '\f013'; -} - -.wi-owm-900:before { - content: '\f056'; -} - -.wi-owm-901:before { - content: '\f01d'; -} - -.wi-owm-902:before { - content: '\f073'; -} - -.wi-owm-903:before { - content: '\f076'; -} - -.wi-owm-904:before { - content: '\f072'; -} - -.wi-owm-905:before { - content: '\f021'; -} - -.wi-owm-906:before { - content: '\f015'; -} - -.wi-owm-957:before { - content: '\f050'; -} - -.wi-owm-day-200:before, -.wi-owm-day-201:before, -.wi-owm-day-202:before { - content: '\f010'; -} - -.wi-owm-day-210:before, -.wi-owm-day-211:before, -.wi-owm-day-212:before, -.wi-owm-day-221:before { - content: '\f005'; -} - -.wi-owm-day-230:before, -.wi-owm-day-231:before, -.wi-owm-day-232:before { - content: '\f010'; -} - -.wi-owm-day-300:before, -.wi-owm-day-301:before { - content: '\f00b'; -} - -.wi-owm-day-302:before, -.wi-owm-day-310:before, -.wi-owm-day-311:before, -.wi-owm-day-312:before, -.wi-owm-day-313:before, -.wi-owm-day-314:before { - content: '\f008'; -} - -.wi-owm-day-321:before, -.wi-owm-day-500:before { - content: '\f00b'; -} - -.wi-owm-day-501:before, -.wi-owm-day-502:before, -.wi-owm-day-503:before, -.wi-owm-day-504:before { - content: '\f008'; -} - -.wi-owm-day-511:before { - content: '\f006'; -} - -.wi-owm-day-520:before, -.wi-owm-day-521:before, -.wi-owm-day-522:before { - content: '\f009'; -} - -.wi-owm-day-531:before { - content: '\f00e'; -} - -.wi-owm-day-600:before { - content: '\f00a'; -} - -.wi-owm-day-601:before { - content: '\f0b2'; -} - -.wi-owm-day-602:before { - content: '\f00a'; -} - -.wi-owm-day-611:before, -.wi-owm-day-612:before, -.wi-owm-day-615:before, -.wi-owm-day-616:before, -.wi-owm-day-620:before { - content: '\f006'; -} - -.wi-owm-day-621:before, -.wi-owm-day-622:before { - content: '\f00a'; -} - -.wi-owm-day-701:before { - content: '\f003'; -} - -.wi-owm-day-711:before { - content: '\f062'; -} - -.wi-owm-day-721:before { - content: '\f0b6'; -} - -.wi-owm-day-731:before { - content: '\f063'; -} - -.wi-owm-day-741:before { - content: '\f003'; -} - -.wi-owm-day-761:before, -.wi-owm-day-762:before { - content: '\f063'; -} - -.wi-owm-day-781:before { - content: '\f056'; -} - -.wi-owm-day-800:before { - content: '\f00d'; -} - -.wi-owm-day-801:before, -.wi-owm-day-802:before, -.wi-owm-day-803:before { - content: '\f000'; -} - -.wi-owm-day-804:before { - content: '\f00c'; -} - -.wi-owm-day-900:before { - content: '\f056'; -} - -.wi-owm-day-902:before { - content: '\f073'; -} - -.wi-owm-day-903:before { - content: '\f076'; -} - -.wi-owm-day-904:before { - content: '\f072'; -} - -.wi-owm-day-906:before { - content: '\f004'; -} - -.wi-owm-day-957:before { - content: '\f050'; -} - -.wi-owm-night-200:before, -.wi-owm-night-201:before, -.wi-owm-night-202:before { - content: '\f02d'; -} - -.wi-owm-night-210:before, -.wi-owm-night-211:before, -.wi-owm-night-212:before, -.wi-owm-night-221:before { - content: '\f025'; -} - -.wi-owm-night-230:before, -.wi-owm-night-231:before, -.wi-owm-night-232:before { - content: '\f02d'; -} - -.wi-owm-night-300:before, -.wi-owm-night-301:before { - content: '\f02b'; -} - -.wi-owm-night-302:before, -.wi-owm-night-310:before, -.wi-owm-night-311:before, -.wi-owm-night-312:before, -.wi-owm-night-313:before, -.wi-owm-night-314:before { - content: '\f028'; -} - -.wi-owm-night-321:before, -.wi-owm-night-500:before { - content: '\f02b'; -} - -.wi-owm-night-501:before, -.wi-owm-night-502:before, -.wi-owm-night-503:before, -.wi-owm-night-504:before { - content: '\f028'; -} - -.wi-owm-night-511:before { - content: '\f026'; -} - -.wi-owm-night-520:before, -.wi-owm-night-521:before, -.wi-owm-night-522:before { - content: '\f029'; -} - -.wi-owm-night-531:before { - content: '\f02c'; -} - -.wi-owm-night-600:before { - content: '\f02a'; -} - -.wi-owm-night-601:before { - content: '\f0b4'; -} - -.wi-owm-night-602:before { - content: '\f02a'; -} - -.wi-owm-night-611:before, -.wi-owm-night-612:before, -.wi-owm-night-615:before, -.wi-owm-night-616:before, -.wi-owm-night-620:before { - content: '\f026'; -} - -.wi-owm-night-621:before, -.wi-owm-night-622:before { - content: '\f02a'; -} - -.wi-owm-night-701:before { - content: '\f04a'; -} - -.wi-owm-night-711:before { - content: '\f062'; -} - -.wi-owm-night-721:before { - content: '\f0b6'; -} - -.wi-owm-night-731:before { - content: '\f063'; -} - -.wi-owm-night-741:before { - content: '\f04a'; -} - -.wi-owm-night-761:before, -.wi-owm-night-762:before { - content: '\f063'; -} - -.wi-owm-night-781:before { - content: '\f056'; -} - -.wi-owm-night-800:before { - content: '\f02e'; -} - -.wi-owm-night-801:before, -.wi-owm-night-802:before, -.wi-owm-night-803:before { - content: '\f022'; -} - -.wi-owm-night-804:before { - content: '\f086'; -} - -.wi-owm-night-900:before { - content: '\f056'; -} - -.wi-owm-night-902:before { - content: '\f073'; -} - -.wi-owm-night-903:before { - content: '\f076'; -} - -.wi-owm-night-904:before { - content: '\f072'; -} - -.wi-owm-night-906:before { - content: '\f024'; -} - -.wi-owm-night-957:before { - content: '\f050'; -} - -.wi-wu-chanceflurries:before { - content: '\f064'; -} - -.wi-wu-chancerain:before { - content: '\f019'; -} - -.wi-wu-chancesleat:before { - content: '\f0b5'; -} - -.wi-wu-chancesnow:before { - content: '\f01b'; -} - -.wi-wu-chancetstorms:before { - content: '\f01e'; -} - -.wi-wu-clear:before { - content: '\f00d'; -} - -.wi-wu-cloudy:before { - content: '\f002'; -} - -.wi-wu-flurries:before { - content: '\f064'; -} - -.wi-wu-hazy:before { - content: '\f0b6'; -} - -.wi-wu-mostlycloudy:before { - content: '\f002'; -} - -.wi-wu-mostlysunny:before { - content: '\f00d'; -} - -.wi-wu-partlycloudy:before { - content: '\f002'; -} - -.wi-wu-partlysunny:before { - content: '\f00d'; -} - -.wi-wu-rain:before { - content: '\f01a'; -} - -.wi-wu-sleat:before { - content: '\f0b5'; -} - -.wi-wu-snow:before { - content: '\f01b'; -} - -.wi-wu-sunny:before { - content: '\f00d'; -} - -.wi-wu-tstorms:before { - content: '\f01e'; -} - -.wi-wu-unknown:before { - content: '\f00d'; -} diff --git a/src/styles/main.css b/src/styles/main.css index c3c55f5..e520502 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -639,2150 +639,6 @@ template { display: none; } -@font-face { - font-family: 'fontello'; - - src: url("../fonts/fontello.woff2?10498634") format("woff2"), url("../fonts/fontello.woff?10498634") format("woff"), url("../fonts/fontello.ttf?10498634") format("truetype"), url("../fonts/fontello.svg?10498634#fontello") format("svg"); - - font-weight: normal; - - font-style: normal; -} - -[class^='icon-']:before, -[class*=' icon-']:before { - font-family: 'fontello'; - font-style: normal; - font-weight: normal; - display: inline-block; - text-decoration: inherit; - width: 1em; - margin-right: 0.2em; - text-align: center; - /* opacity: .8; */ - /* For safety - reset parent styles, that can break glyph codes*/ - font-variant: normal; - text-transform: none; - /* fix buttons height, for twitter bootstrap */ - line-height: 1em; - /* Animation center compensation - margins should be symmetric */ - /* remove if not needed */ - margin-left: 0.2em; - /* you can be more comfortable with increased icons size */ - /* font-size: 120%; */ - /* Font smoothing. That was taken from TWBS */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - /* Uncomment for 3D effect */ - text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); -} - -.icon-heart:before { - content: '\e800'; -} - -.icon-heart-empty:before { - content: '\e801'; -} - -.icon-search:before { - content: '\e802'; -} - -.icon-up-arrow:before { - content: '\e803'; -} - -.icon-down-arrow:before { - content: '\e804'; -} - -.icon-cw:before { - content: '\e809'; -} - -.icon-percent:before { - content: '\f295'; -} - -/*! - * Weather Icons 2.0.8 - * Updated September 19, 2015 - * Weather themed icons for Bootstrap - * Author - Erik Flowers - erik@helloerik.com - * Email: erik@helloerik.com - * Twitter: http://twitter.com/Erik_UX - * ------------------------------------------------------------------------------ - * Maintained at http://erikflowers.github.io/weather-icons - * - * License - * ------------------------------------------------------------------------------ - * - Font licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - CSS, SCSS and LESS are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Inspired by and works great as a companion with Font Awesome - * "Font Awesome by Dave Gandy - http://fontawesome.io" - */ - -@font-face { - font-family: 'weathericons'; - - src: url("../fonts/weathericons-regular-webfont.woff2") format("woff2"), url("../fonts/weathericons-regular-webfont.woff") format("woff"), url("../fonts/weathericons-regular-webfont.ttf") format("truetype"); - - font-weight: normal; - - font-style: normal; -} - -.wi { - display: inline-block; - font-family: 'weathericons'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.wi-fw { - text-align: center; - width: 1.4em; -} - -.wi-rotate-90 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); - transform: rotate(90deg); -} - -.wi-rotate-180 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); - transform: rotate(180deg); -} - -.wi-rotate-270 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); - transform: rotate(270deg); -} - -.wi-flip-horizontal { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); - transform: scale(-1, 1); -} - -.wi-flip-vertical { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); - transform: scale(1, -1); -} - -.wi-day-sunny:before { - content: '\f00d'; -} - -.wi-day-cloudy:before { - content: '\f002'; -} - -.wi-day-cloudy-gusts:before { - content: '\f000'; -} - -.wi-day-cloudy-windy:before { - content: '\f001'; -} - -.wi-day-fog:before { - content: '\f003'; -} - -.wi-day-hail:before { - content: '\f004'; -} - -.wi-day-haze:before { - content: '\f0b6'; -} - -.wi-day-lightning:before { - content: '\f005'; -} - -.wi-day-rain:before { - content: '\f008'; -} - -.wi-day-rain-mix:before { - content: '\f006'; -} - -.wi-day-rain-wind:before { - content: '\f007'; -} - -.wi-day-showers:before { - content: '\f009'; -} - -.wi-day-sleet:before { - content: '\f0b2'; -} - -.wi-day-sleet-storm:before { - content: '\f068'; -} - -.wi-day-snow:before { - content: '\f00a'; -} - -.wi-day-snow-thunderstorm:before { - content: '\f06b'; -} - -.wi-day-snow-wind:before { - content: '\f065'; -} - -.wi-day-sprinkle:before { - content: '\f00b'; -} - -.wi-day-storm-showers:before { - content: '\f00e'; -} - -.wi-day-sunny-overcast:before { - content: '\f00c'; -} - -.wi-day-thunderstorm:before { - content: '\f010'; -} - -.wi-day-windy:before { - content: '\f085'; -} - -.wi-solar-eclipse:before { - content: '\f06e'; -} - -.wi-hot:before { - content: '\f072'; -} - -.wi-day-cloudy-high:before { - content: '\f07d'; -} - -.wi-day-light-wind:before { - content: '\f0c4'; -} - -.wi-night-clear:before { - content: '\f02e'; -} - -.wi-night-alt-cloudy:before { - content: '\f086'; -} - -.wi-night-alt-cloudy-gusts:before { - content: '\f022'; -} - -.wi-night-alt-cloudy-windy:before { - content: '\f023'; -} - -.wi-night-alt-hail:before { - content: '\f024'; -} - -.wi-night-alt-lightning:before { - content: '\f025'; -} - -.wi-night-alt-rain:before { - content: '\f028'; -} - -.wi-night-alt-rain-mix:before { - content: '\f026'; -} - -.wi-night-alt-rain-wind:before { - content: '\f027'; -} - -.wi-night-alt-showers:before { - content: '\f029'; -} - -.wi-night-alt-sleet:before { - content: '\f0b4'; -} - -.wi-night-alt-sleet-storm:before { - content: '\f06a'; -} - -.wi-night-alt-snow:before { - content: '\f02a'; -} - -.wi-night-alt-snow-thunderstorm:before { - content: '\f06d'; -} - -.wi-night-alt-snow-wind:before { - content: '\f067'; -} - -.wi-night-alt-sprinkle:before { - content: '\f02b'; -} - -.wi-night-alt-storm-showers:before { - content: '\f02c'; -} - -.wi-night-alt-thunderstorm:before { - content: '\f02d'; -} - -.wi-night-cloudy:before { - content: '\f031'; -} - -.wi-night-cloudy-gusts:before { - content: '\f02f'; -} - -.wi-night-cloudy-windy:before { - content: '\f030'; -} - -.wi-night-fog:before { - content: '\f04a'; -} - -.wi-night-hail:before { - content: '\f032'; -} - -.wi-night-lightning:before { - content: '\f033'; -} - -.wi-night-partly-cloudy:before { - content: '\f083'; -} - -.wi-night-rain:before { - content: '\f036'; -} - -.wi-night-rain-mix:before { - content: '\f034'; -} - -.wi-night-rain-wind:before { - content: '\f035'; -} - -.wi-night-showers:before { - content: '\f037'; -} - -.wi-night-sleet:before { - content: '\f0b3'; -} - -.wi-night-sleet-storm:before { - content: '\f069'; -} - -.wi-night-snow:before { - content: '\f038'; -} - -.wi-night-snow-thunderstorm:before { - content: '\f06c'; -} - -.wi-night-snow-wind:before { - content: '\f066'; -} - -.wi-night-sprinkle:before { - content: '\f039'; -} - -.wi-night-storm-showers:before { - content: '\f03a'; -} - -.wi-night-thunderstorm:before { - content: '\f03b'; -} - -.wi-lunar-eclipse:before { - content: '\f070'; -} - -.wi-stars:before { - content: '\f077'; -} - -.wi-storm-showers:before { - content: '\f01d'; -} - -.wi-thunderstorm:before { - content: '\f01e'; -} - -.wi-night-alt-cloudy-high:before { - content: '\f07e'; -} - -.wi-night-cloudy-high:before { - content: '\f080'; -} - -.wi-night-alt-partly-cloudy:before { - content: '\f081'; -} - -.wi-cloud:before { - content: '\f041'; -} - -.wi-cloudy:before { - content: '\f013'; -} - -.wi-cloudy-gusts:before { - content: '\f011'; -} - -.wi-cloudy-windy:before { - content: '\f012'; -} - -.wi-fog:before { - content: '\f014'; -} - -.wi-hail:before { - content: '\f015'; -} - -.wi-rain:before { - content: '\f019'; -} - -.wi-rain-mix:before { - content: '\f017'; -} - -.wi-rain-wind:before { - content: '\f018'; -} - -.wi-showers:before { - content: '\f01a'; -} - -.wi-sleet:before { - content: '\f0b5'; -} - -.wi-snow:before { - content: '\f01b'; -} - -.wi-sprinkle:before { - content: '\f01c'; -} - -.wi-storm-showers:before { - content: '\f01d'; -} - -.wi-thunderstorm:before { - content: '\f01e'; -} - -.wi-snow-wind:before { - content: '\f064'; -} - -.wi-snow:before { - content: '\f01b'; -} - -.wi-smog:before { - content: '\f074'; -} - -.wi-smoke:before { - content: '\f062'; -} - -.wi-lightning:before { - content: '\f016'; -} - -.wi-raindrops:before { - content: '\f04e'; -} - -.wi-raindrop:before { - content: '\f078'; -} - -.wi-dust:before { - content: '\f063'; -} - -.wi-snowflake-cold:before { - content: '\f076'; -} - -.wi-windy:before { - content: '\f021'; -} - -.wi-strong-wind:before { - content: '\f050'; -} - -.wi-sandstorm:before { - content: '\f082'; -} - -.wi-earthquake:before { - content: '\f0c6'; -} - -.wi-fire:before { - content: '\f0c7'; -} - -.wi-flood:before { - content: '\f07c'; -} - -.wi-meteor:before { - content: '\f071'; -} - -.wi-tsunami:before { - content: '\f0c5'; -} - -.wi-volcano:before { - content: '\f0c8'; -} - -.wi-hurricane:before { - content: '\f073'; -} - -.wi-tornado:before { - content: '\f056'; -} - -.wi-small-craft-advisory:before { - content: '\f0cc'; -} - -.wi-gale-warning:before { - content: '\f0cd'; -} - -.wi-storm-warning:before { - content: '\f0ce'; -} - -.wi-hurricane-warning:before { - content: '\f0cf'; -} - -.wi-wind-direction:before { - content: '\f0b1'; -} - -.wi-alien:before { - content: '\f075'; -} - -.wi-celsius:before { - content: '\f03c'; -} - -.wi-fahrenheit:before { - content: '\f045'; -} - -.wi-degrees:before { - content: '\f042'; -} - -.wi-thermometer:before { - content: '\f055'; -} - -.wi-thermometer-exterior:before { - content: '\f053'; -} - -.wi-thermometer-internal:before { - content: '\f054'; -} - -.wi-cloud-down:before { - content: '\f03d'; -} - -.wi-cloud-up:before { - content: '\f040'; -} - -.wi-cloud-refresh:before { - content: '\f03e'; -} - -.wi-horizon:before { - content: '\f047'; -} - -.wi-horizon-alt:before { - content: '\f046'; -} - -.wi-sunrise:before { - content: '\f051'; -} - -.wi-sunset:before { - content: '\f052'; -} - -.wi-moonrise:before { - content: '\f0c9'; -} - -.wi-moonset:before { - content: '\f0ca'; -} - -.wi-refresh:before { - content: '\f04c'; -} - -.wi-refresh-alt:before { - content: '\f04b'; -} - -.wi-umbrella:before { - content: '\f084'; -} - -.wi-barometer:before { - content: '\f079'; -} - -.wi-humidity:before { - content: '\f07a'; -} - -.wi-na:before { - content: '\f07b'; -} - -.wi-train:before { - content: '\f0cb'; -} - -.wi-moon-new:before { - content: '\f095'; -} - -.wi-moon-waxing-crescent-1:before { - content: '\f096'; -} - -.wi-moon-waxing-crescent-2:before { - content: '\f097'; -} - -.wi-moon-waxing-crescent-3:before { - content: '\f098'; -} - -.wi-moon-waxing-crescent-4:before { - content: '\f099'; -} - -.wi-moon-waxing-crescent-5:before { - content: '\f09a'; -} - -.wi-moon-waxing-crescent-6:before { - content: '\f09b'; -} - -.wi-moon-first-quarter:before { - content: '\f09c'; -} - -.wi-moon-waxing-gibbous-1:before { - content: '\f09d'; -} - -.wi-moon-waxing-gibbous-2:before { - content: '\f09e'; -} - -.wi-moon-waxing-gibbous-3:before { - content: '\f09f'; -} - -.wi-moon-waxing-gibbous-4:before { - content: '\f0a0'; -} - -.wi-moon-waxing-gibbous-5:before { - content: '\f0a1'; -} - -.wi-moon-waxing-gibbous-6:before { - content: '\f0a2'; -} - -.wi-moon-full:before { - content: '\f0a3'; -} - -.wi-moon-waning-gibbous-1:before { - content: '\f0a4'; -} - -.wi-moon-waning-gibbous-2:before { - content: '\f0a5'; -} - -.wi-moon-waning-gibbous-3:before { - content: '\f0a6'; -} - -.wi-moon-waning-gibbous-4:before { - content: '\f0a7'; -} - -.wi-moon-waning-gibbous-5:before { - content: '\f0a8'; -} - -.wi-moon-waning-gibbous-6:before { - content: '\f0a9'; -} - -.wi-moon-third-quarter:before { - content: '\f0aa'; -} - -.wi-moon-waning-crescent-1:before { - content: '\f0ab'; -} - -.wi-moon-waning-crescent-2:before { - content: '\f0ac'; -} - -.wi-moon-waning-crescent-3:before { - content: '\f0ad'; -} - -.wi-moon-waning-crescent-4:before { - content: '\f0ae'; -} - -.wi-moon-waning-crescent-5:before { - content: '\f0af'; -} - -.wi-moon-waning-crescent-6:before { - content: '\f0b0'; -} - -.wi-moon-alt-new:before { - content: '\f0eb'; -} - -.wi-moon-alt-waxing-crescent-1:before { - content: '\f0d0'; -} - -.wi-moon-alt-waxing-crescent-2:before { - content: '\f0d1'; -} - -.wi-moon-alt-waxing-crescent-3:before { - content: '\f0d2'; -} - -.wi-moon-alt-waxing-crescent-4:before { - content: '\f0d3'; -} - -.wi-moon-alt-waxing-crescent-5:before { - content: '\f0d4'; -} - -.wi-moon-alt-waxing-crescent-6:before { - content: '\f0d5'; -} - -.wi-moon-alt-first-quarter:before { - content: '\f0d6'; -} - -.wi-moon-alt-waxing-gibbous-1:before { - content: '\f0d7'; -} - -.wi-moon-alt-waxing-gibbous-2:before { - content: '\f0d8'; -} - -.wi-moon-alt-waxing-gibbous-3:before { - content: '\f0d9'; -} - -.wi-moon-alt-waxing-gibbous-4:before { - content: '\f0da'; -} - -.wi-moon-alt-waxing-gibbous-5:before { - content: '\f0db'; -} - -.wi-moon-alt-waxing-gibbous-6:before { - content: '\f0dc'; -} - -.wi-moon-alt-full:before { - content: '\f0dd'; -} - -.wi-moon-alt-waning-gibbous-1:before { - content: '\f0de'; -} - -.wi-moon-alt-waning-gibbous-2:before { - content: '\f0df'; -} - -.wi-moon-alt-waning-gibbous-3:before { - content: '\f0e0'; -} - -.wi-moon-alt-waning-gibbous-4:before { - content: '\f0e1'; -} - -.wi-moon-alt-waning-gibbous-5:before { - content: '\f0e2'; -} - -.wi-moon-alt-waning-gibbous-6:before { - content: '\f0e3'; -} - -.wi-moon-alt-third-quarter:before { - content: '\f0e4'; -} - -.wi-moon-alt-waning-crescent-1:before { - content: '\f0e5'; -} - -.wi-moon-alt-waning-crescent-2:before { - content: '\f0e6'; -} - -.wi-moon-alt-waning-crescent-3:before { - content: '\f0e7'; -} - -.wi-moon-alt-waning-crescent-4:before { - content: '\f0e8'; -} - -.wi-moon-alt-waning-crescent-5:before { - content: '\f0e9'; -} - -.wi-moon-alt-waning-crescent-6:before { - content: '\f0ea'; -} - -.wi-moon-0:before { - content: '\f095'; -} - -.wi-moon-1:before { - content: '\f096'; -} - -.wi-moon-2:before { - content: '\f097'; -} - -.wi-moon-3:before { - content: '\f098'; -} - -.wi-moon-4:before { - content: '\f099'; -} - -.wi-moon-5:before { - content: '\f09a'; -} - -.wi-moon-6:before { - content: '\f09b'; -} - -.wi-moon-7:before { - content: '\f09c'; -} - -.wi-moon-8:before { - content: '\f09d'; -} - -.wi-moon-9:before { - content: '\f09e'; -} - -.wi-moon-10:before { - content: '\f09f'; -} - -.wi-moon-11:before { - content: '\f0a0'; -} - -.wi-moon-12:before { - content: '\f0a1'; -} - -.wi-moon-13:before { - content: '\f0a2'; -} - -.wi-moon-14:before { - content: '\f0a3'; -} - -.wi-moon-15:before { - content: '\f0a4'; -} - -.wi-moon-16:before { - content: '\f0a5'; -} - -.wi-moon-17:before { - content: '\f0a6'; -} - -.wi-moon-18:before { - content: '\f0a7'; -} - -.wi-moon-19:before { - content: '\f0a8'; -} - -.wi-moon-20:before { - content: '\f0a9'; -} - -.wi-moon-21:before { - content: '\f0aa'; -} - -.wi-moon-22:before { - content: '\f0ab'; -} - -.wi-moon-23:before { - content: '\f0ac'; -} - -.wi-moon-24:before { - content: '\f0ad'; -} - -.wi-moon-25:before { - content: '\f0ae'; -} - -.wi-moon-26:before { - content: '\f0af'; -} - -.wi-moon-27:before { - content: '\f0b0'; -} - -.wi-time-1:before { - content: '\f08a'; -} - -.wi-time-2:before { - content: '\f08b'; -} - -.wi-time-3:before { - content: '\f08c'; -} - -.wi-time-4:before { - content: '\f08d'; -} - -.wi-time-5:before { - content: '\f08e'; -} - -.wi-time-6:before { - content: '\f08f'; -} - -.wi-time-7:before { - content: '\f090'; -} - -.wi-time-8:before { - content: '\f091'; -} - -.wi-time-9:before { - content: '\f092'; -} - -.wi-time-10:before { - content: '\f093'; -} - -.wi-time-11:before { - content: '\f094'; -} - -.wi-time-12:before { - content: '\f089'; -} - -.wi-direction-up:before { - content: '\f058'; -} - -.wi-direction-up-right:before { - content: '\f057'; -} - -.wi-direction-right:before { - content: '\f04d'; -} - -.wi-direction-down-right:before { - content: '\f088'; -} - -.wi-direction-down:before { - content: '\f044'; -} - -.wi-direction-down-left:before { - content: '\f043'; -} - -.wi-direction-left:before { - content: '\f048'; -} - -.wi-direction-up-left:before { - content: '\f087'; -} - -.wi-wind-beaufort-0:before { - content: '\f0b7'; -} - -.wi-wind-beaufort-1:before { - content: '\f0b8'; -} - -.wi-wind-beaufort-2:before { - content: '\f0b9'; -} - -.wi-wind-beaufort-3:before { - content: '\f0ba'; -} - -.wi-wind-beaufort-4:before { - content: '\f0bb'; -} - -.wi-wind-beaufort-5:before { - content: '\f0bc'; -} - -.wi-wind-beaufort-6:before { - content: '\f0bd'; -} - -.wi-wind-beaufort-7:before { - content: '\f0be'; -} - -.wi-wind-beaufort-8:before { - content: '\f0bf'; -} - -.wi-wind-beaufort-9:before { - content: '\f0c0'; -} - -.wi-wind-beaufort-10:before { - content: '\f0c1'; -} - -.wi-wind-beaufort-11:before { - content: '\f0c2'; -} - -.wi-wind-beaufort-12:before { - content: '\f0c3'; -} - -.wi-yahoo-0:before { - content: '\f056'; -} - -.wi-yahoo-1:before { - content: '\f00e'; -} - -.wi-yahoo-2:before { - content: '\f073'; -} - -.wi-yahoo-3:before, -.wi-yahoo-4:before { - content: '\f01e'; -} - -.wi-yahoo-5:before, -.wi-yahoo-6:before, -.wi-yahoo-7:before { - content: '\f017'; -} - -.wi-yahoo-8:before { - content: '\f015'; -} - -.wi-yahoo-9:before { - content: '\f01a'; -} - -.wi-yahoo-10:before { - content: '\f015'; -} - -.wi-yahoo-11:before, -.wi-yahoo-12:before { - content: '\f01a'; -} - -.wi-yahoo-13:before { - content: '\f01b'; -} - -.wi-yahoo-14:before { - content: '\f00a'; -} - -.wi-yahoo-15:before { - content: '\f064'; -} - -.wi-yahoo-16:before { - content: '\f01b'; -} - -.wi-yahoo-17:before { - content: '\f015'; -} - -.wi-yahoo-18:before { - content: '\f017'; -} - -.wi-yahoo-19:before { - content: '\f063'; -} - -.wi-yahoo-20:before { - content: '\f014'; -} - -.wi-yahoo-21:before { - content: '\f021'; -} - -.wi-yahoo-22:before { - content: '\f062'; -} - -.wi-yahoo-23:before, -.wi-yahoo-24:before { - content: '\f050'; -} - -.wi-yahoo-25:before { - content: '\f076'; -} - -.wi-yahoo-26:before { - content: '\f013'; -} - -.wi-yahoo-27:before { - content: '\f031'; -} - -.wi-yahoo-28:before { - content: '\f002'; -} - -.wi-yahoo-29:before { - content: '\f031'; -} - -.wi-yahoo-30:before { - content: '\f002'; -} - -.wi-yahoo-31:before { - content: '\f02e'; -} - -.wi-yahoo-32:before { - content: '\f00d'; -} - -.wi-yahoo-33:before { - content: '\f083'; -} - -.wi-yahoo-34:before { - content: '\f00c'; -} - -.wi-yahoo-35:before { - content: '\f017'; -} - -.wi-yahoo-36:before { - content: '\f072'; -} - -.wi-yahoo-37:before, -.wi-yahoo-38:before, -.wi-yahoo-39:before { - content: '\f00e'; -} - -.wi-yahoo-40:before { - content: '\f01a'; -} - -.wi-yahoo-41:before { - content: '\f064'; -} - -.wi-yahoo-42:before { - content: '\f01b'; -} - -.wi-yahoo-43:before { - content: '\f064'; -} - -.wi-yahoo-44:before { - content: '\f00c'; -} - -.wi-yahoo-45:before { - content: '\f00e'; -} - -.wi-yahoo-46:before { - content: '\f01b'; -} - -.wi-yahoo-47:before { - content: '\f00e'; -} - -.wi-yahoo-3200:before { - content: '\f077'; -} - -.wi-forecast-io-clear-day:before { - content: '\f00d'; -} - -.wi-forecast-io-clear-night:before { - content: '\f02e'; -} - -.wi-forecast-io-rain:before { - content: '\f019'; -} - -.wi-forecast-io-snow:before { - content: '\f01b'; -} - -.wi-forecast-io-sleet:before { - content: '\f0b5'; -} - -.wi-forecast-io-wind:before { - content: '\f050'; -} - -.wi-forecast-io-fog:before { - content: '\f014'; -} - -.wi-forecast-io-cloudy:before { - content: '\f013'; -} - -.wi-forecast-io-partly-cloudy-day:before { - content: '\f002'; -} - -.wi-forecast-io-partly-cloudy-night:before { - content: '\f031'; -} - -.wi-forecast-io-hail:before { - content: '\f015'; -} - -.wi-forecast-io-thunderstorm:before { - content: '\f01e'; -} - -.wi-forecast-io-tornado:before { - content: '\f056'; -} - -.wi-wmo4680-0:before, -.wi-wmo4680-00:before { - content: '\f055'; -} - -.wi-wmo4680-1:before, -.wi-wmo4680-01:before { - content: '\f013'; -} - -.wi-wmo4680-2:before, -.wi-wmo4680-02:before { - content: '\f055'; -} - -.wi-wmo4680-3:before, -.wi-wmo4680-03:before { - content: '\f013'; -} - -.wi-wmo4680-4:before, -.wi-wmo4680-04:before, -.wi-wmo4680-5:before, -.wi-wmo4680-05:before, -.wi-wmo4680-10:before, -.wi-wmo4680-11:before { - content: '\f014'; -} - -.wi-wmo4680-12:before { - content: '\f016'; -} - -.wi-wmo4680-18:before { - content: '\f050'; -} - -.wi-wmo4680-20:before { - content: '\f014'; -} - -.wi-wmo4680-21:before, -.wi-wmo4680-22:before { - content: '\f017'; -} - -.wi-wmo4680-23:before { - content: '\f019'; -} - -.wi-wmo4680-24:before { - content: '\f01b'; -} - -.wi-wmo4680-25:before { - content: '\f015'; -} - -.wi-wmo4680-26:before { - content: '\f01e'; -} - -.wi-wmo4680-27:before, -.wi-wmo4680-28:before, -.wi-wmo4680-29:before { - content: '\f063'; -} - -.wi-wmo4680-30:before, -.wi-wmo4680-31:before, -.wi-wmo4680-32:before, -.wi-wmo4680-33:before, -.wi-wmo4680-34:before, -.wi-wmo4680-35:before { - content: '\f014'; -} - -.wi-wmo4680-40:before { - content: '\f017'; -} - -.wi-wmo4680-41:before { - content: '\f01c'; -} - -.wi-wmo4680-42:before { - content: '\f019'; -} - -.wi-wmo4680-43:before { - content: '\f01c'; -} - -.wi-wmo4680-44:before { - content: '\f019'; -} - -.wi-wmo4680-45:before, -.wi-wmo4680-46:before { - content: '\f015'; -} - -.wi-wmo4680-47:before, -.wi-wmo4680-48:before { - content: '\f01b'; -} - -.wi-wmo4680-50:before, -.wi-wmo4680-51:before { - content: '\f01c'; -} - -.wi-wmo4680-52:before, -.wi-wmo4680-53:before { - content: '\f019'; -} - -.wi-wmo4680-54:before, -.wi-wmo4680-55:before, -.wi-wmo4680-56:before { - content: '\f076'; -} - -.wi-wmo4680-57:before { - content: '\f01c'; -} - -.wi-wmo4680-58:before { - content: '\f019'; -} - -.wi-wmo4680-60:before, -.wi-wmo4680-61:before { - content: '\f01c'; -} - -.wi-wmo4680-62:before, -.wi-wmo4680-63:before { - content: '\f019'; -} - -.wi-wmo4680-64:before, -.wi-wmo4680-65:before, -.wi-wmo4680-66:before { - content: '\f015'; -} - -.wi-wmo4680-67:before, -.wi-wmo4680-68:before { - content: '\f017'; -} - -.wi-wmo4680-70:before, -.wi-wmo4680-71:before, -.wi-wmo4680-72:before, -.wi-wmo4680-73:before { - content: '\f01b'; -} - -.wi-wmo4680-74:before, -.wi-wmo4680-75:before, -.wi-wmo4680-76:before { - content: '\f076'; -} - -.wi-wmo4680-77:before { - content: '\f01b'; -} - -.wi-wmo4680-78:before { - content: '\f076'; -} - -.wi-wmo4680-80:before { - content: '\f019'; -} - -.wi-wmo4680-81:before { - content: '\f01c'; -} - -.wi-wmo4680-82:before, -.wi-wmo4680-83:before { - content: '\f019'; -} - -.wi-wmo4680-84:before { - content: '\f01d'; -} - -.wi-wmo4680-85:before, -.wi-wmo4680-86:before, -.wi-wmo4680-87:before { - content: '\f017'; -} - -.wi-wmo4680-89:before { - content: '\f015'; -} - -.wi-wmo4680-90:before { - content: '\f016'; -} - -.wi-wmo4680-91:before { - content: '\f01d'; -} - -.wi-wmo4680-92:before, -.wi-wmo4680-93:before { - content: '\f01e'; -} - -.wi-wmo4680-94:before { - content: '\f016'; -} - -.wi-wmo4680-95:before, -.wi-wmo4680-96:before { - content: '\f01e'; -} - -.wi-wmo4680-99:before { - content: '\f056'; -} - -.wi-owm-200:before, -.wi-owm-201:before, -.wi-owm-202:before { - content: '\f01e'; -} - -.wi-owm-210:before, -.wi-owm-211:before, -.wi-owm-212:before, -.wi-owm-221:before { - content: '\f016'; -} - -.wi-owm-230:before, -.wi-owm-231:before, -.wi-owm-232:before { - content: '\f01e'; -} - -.wi-owm-300:before, -.wi-owm-301:before { - content: '\f01c'; -} - -.wi-owm-302:before { - content: '\f019'; -} - -.wi-owm-310:before { - content: '\f017'; -} - -.wi-owm-311:before, -.wi-owm-312:before { - content: '\f019'; -} - -.wi-owm-313:before { - content: '\f01a'; -} - -.wi-owm-314:before { - content: '\f019'; -} - -.wi-owm-321:before, -.wi-owm-500:before { - content: '\f01c'; -} - -.wi-owm-501:before, -.wi-owm-502:before, -.wi-owm-503:before, -.wi-owm-504:before { - content: '\f019'; -} - -.wi-owm-511:before { - content: '\f017'; -} - -.wi-owm-520:before, -.wi-owm-521:before, -.wi-owm-522:before { - content: '\f01a'; -} - -.wi-owm-531:before { - content: '\f01d'; -} - -.wi-owm-600:before, -.wi-owm-601:before { - content: '\f01b'; -} - -.wi-owm-602:before { - content: '\f0b5'; -} - -.wi-owm-611:before, -.wi-owm-612:before, -.wi-owm-615:before, -.wi-owm-616:before, -.wi-owm-620:before { - content: '\f017'; -} - -.wi-owm-621:before, -.wi-owm-622:before { - content: '\f01b'; -} - -.wi-owm-701:before { - content: '\f014'; -} - -.wi-owm-711:before { - content: '\f062'; -} - -.wi-owm-721:before { - content: '\f0b6'; -} - -.wi-owm-731:before { - content: '\f063'; -} - -.wi-owm-741:before { - content: '\f014'; -} - -.wi-owm-761:before, -.wi-owm-762:before { - content: '\f063'; -} - -.wi-owm-771:before { - content: '\f011'; -} - -.wi-owm-781:before { - content: '\f056'; -} - -.wi-owm-800:before { - content: '\f00d'; -} - -.wi-owm-801:before, -.wi-owm-802:before { - content: '\f011'; -} - -.wi-owm-803:before { - content: '\f012'; -} - -.wi-owm-804:before { - content: '\f013'; -} - -.wi-owm-900:before { - content: '\f056'; -} - -.wi-owm-901:before { - content: '\f01d'; -} - -.wi-owm-902:before { - content: '\f073'; -} - -.wi-owm-903:before { - content: '\f076'; -} - -.wi-owm-904:before { - content: '\f072'; -} - -.wi-owm-905:before { - content: '\f021'; -} - -.wi-owm-906:before { - content: '\f015'; -} - -.wi-owm-957:before { - content: '\f050'; -} - -.wi-owm-day-200:before, -.wi-owm-day-201:before, -.wi-owm-day-202:before { - content: '\f010'; -} - -.wi-owm-day-210:before, -.wi-owm-day-211:before, -.wi-owm-day-212:before, -.wi-owm-day-221:before { - content: '\f005'; -} - -.wi-owm-day-230:before, -.wi-owm-day-231:before, -.wi-owm-day-232:before { - content: '\f010'; -} - -.wi-owm-day-300:before, -.wi-owm-day-301:before { - content: '\f00b'; -} - -.wi-owm-day-302:before, -.wi-owm-day-310:before, -.wi-owm-day-311:before, -.wi-owm-day-312:before, -.wi-owm-day-313:before, -.wi-owm-day-314:before { - content: '\f008'; -} - -.wi-owm-day-321:before, -.wi-owm-day-500:before { - content: '\f00b'; -} - -.wi-owm-day-501:before, -.wi-owm-day-502:before, -.wi-owm-day-503:before, -.wi-owm-day-504:before { - content: '\f008'; -} - -.wi-owm-day-511:before { - content: '\f006'; -} - -.wi-owm-day-520:before, -.wi-owm-day-521:before, -.wi-owm-day-522:before { - content: '\f009'; -} - -.wi-owm-day-531:before { - content: '\f00e'; -} - -.wi-owm-day-600:before { - content: '\f00a'; -} - -.wi-owm-day-601:before { - content: '\f0b2'; -} - -.wi-owm-day-602:before { - content: '\f00a'; -} - -.wi-owm-day-611:before, -.wi-owm-day-612:before, -.wi-owm-day-615:before, -.wi-owm-day-616:before, -.wi-owm-day-620:before { - content: '\f006'; -} - -.wi-owm-day-621:before, -.wi-owm-day-622:before { - content: '\f00a'; -} - -.wi-owm-day-701:before { - content: '\f003'; -} - -.wi-owm-day-711:before { - content: '\f062'; -} - -.wi-owm-day-721:before { - content: '\f0b6'; -} - -.wi-owm-day-731:before { - content: '\f063'; -} - -.wi-owm-day-741:before { - content: '\f003'; -} - -.wi-owm-day-761:before, -.wi-owm-day-762:before { - content: '\f063'; -} - -.wi-owm-day-781:before { - content: '\f056'; -} - -.wi-owm-day-800:before { - content: '\f00d'; -} - -.wi-owm-day-801:before, -.wi-owm-day-802:before, -.wi-owm-day-803:before { - content: '\f000'; -} - -.wi-owm-day-804:before { - content: '\f00c'; -} - -.wi-owm-day-900:before { - content: '\f056'; -} - -.wi-owm-day-902:before { - content: '\f073'; -} - -.wi-owm-day-903:before { - content: '\f076'; -} - -.wi-owm-day-904:before { - content: '\f072'; -} - -.wi-owm-day-906:before { - content: '\f004'; -} - -.wi-owm-day-957:before { - content: '\f050'; -} - -.wi-owm-night-200:before, -.wi-owm-night-201:before, -.wi-owm-night-202:before { - content: '\f02d'; -} - -.wi-owm-night-210:before, -.wi-owm-night-211:before, -.wi-owm-night-212:before, -.wi-owm-night-221:before { - content: '\f025'; -} - -.wi-owm-night-230:before, -.wi-owm-night-231:before, -.wi-owm-night-232:before { - content: '\f02d'; -} - -.wi-owm-night-300:before, -.wi-owm-night-301:before { - content: '\f02b'; -} - -.wi-owm-night-302:before, -.wi-owm-night-310:before, -.wi-owm-night-311:before, -.wi-owm-night-312:before, -.wi-owm-night-313:before, -.wi-owm-night-314:before { - content: '\f028'; -} - -.wi-owm-night-321:before, -.wi-owm-night-500:before { - content: '\f02b'; -} - -.wi-owm-night-501:before, -.wi-owm-night-502:before, -.wi-owm-night-503:before, -.wi-owm-night-504:before { - content: '\f028'; -} - -.wi-owm-night-511:before { - content: '\f026'; -} - -.wi-owm-night-520:before, -.wi-owm-night-521:before, -.wi-owm-night-522:before { - content: '\f029'; -} - -.wi-owm-night-531:before { - content: '\f02c'; -} - -.wi-owm-night-600:before { - content: '\f02a'; -} - -.wi-owm-night-601:before { - content: '\f0b4'; -} - -.wi-owm-night-602:before { - content: '\f02a'; -} - -.wi-owm-night-611:before, -.wi-owm-night-612:before, -.wi-owm-night-615:before, -.wi-owm-night-616:before, -.wi-owm-night-620:before { - content: '\f026'; -} - -.wi-owm-night-621:before, -.wi-owm-night-622:before { - content: '\f02a'; -} - -.wi-owm-night-701:before { - content: '\f04a'; -} - -.wi-owm-night-711:before { - content: '\f062'; -} - -.wi-owm-night-721:before { - content: '\f0b6'; -} - -.wi-owm-night-731:before { - content: '\f063'; -} - -.wi-owm-night-741:before { - content: '\f04a'; -} - -.wi-owm-night-761:before, -.wi-owm-night-762:before { - content: '\f063'; -} - -.wi-owm-night-781:before { - content: '\f056'; -} - -.wi-owm-night-800:before { - content: '\f02e'; -} - -.wi-owm-night-801:before, -.wi-owm-night-802:before, -.wi-owm-night-803:before { - content: '\f022'; -} - -.wi-owm-night-804:before { - content: '\f086'; -} - -.wi-owm-night-900:before { - content: '\f056'; -} - -.wi-owm-night-902:before { - content: '\f073'; -} - -.wi-owm-night-903:before { - content: '\f076'; -} - -.wi-owm-night-904:before { - content: '\f072'; -} - -.wi-owm-night-906:before { - content: '\f024'; -} - -.wi-owm-night-957:before { - content: '\f050'; -} - -.wi-wu-chanceflurries:before { - content: '\f064'; -} - -.wi-wu-chancerain:before { - content: '\f019'; -} - -.wi-wu-chancesleat:before { - content: '\f0b5'; -} - -.wi-wu-chancesnow:before { - content: '\f01b'; -} - -.wi-wu-chancetstorms:before { - content: '\f01e'; -} - -.wi-wu-clear:before { - content: '\f00d'; -} - -.wi-wu-cloudy:before { - content: '\f002'; -} - -.wi-wu-flurries:before { - content: '\f064'; -} - -.wi-wu-hazy:before { - content: '\f0b6'; -} - -.wi-wu-mostlycloudy:before { - content: '\f002'; -} - -.wi-wu-mostlysunny:before { - content: '\f00d'; -} - -.wi-wu-partlycloudy:before { - content: '\f002'; -} - -.wi-wu-partlysunny:before { - content: '\f00d'; -} - -.wi-wu-rain:before { - content: '\f01a'; -} - -.wi-wu-sleat:before { - content: '\f0b5'; -} - -.wi-wu-snow:before { - content: '\f01b'; -} - -.wi-wu-sunny:before { - content: '\f00d'; -} - -.wi-wu-tstorms:before { - content: '\f01e'; -} - -.wi-wu-unknown:before { - content: '\f00d'; -} - /** * /* tailwind css * @@ -3489,6 +1345,14 @@ video { background-color: #E7AB4D; } +.bg-react { + background-color: #2acef7; +} + +.bg-toggle { + background-color: #ffa500; +} + .bg-gray-100 { background-color: #f7fafc; } @@ -3581,6 +1445,14 @@ video { background-color: #E7AB4D; } +.hover\:bg-react:hover { + background-color: #2acef7; +} + +.hover\:bg-toggle:hover { + background-color: #ffa500; +} + .hover\:bg-gray-100:hover { background-color: #f7fafc; } @@ -3673,6 +1545,14 @@ video { background-color: #E7AB4D; } +.focus\:bg-react:focus { + background-color: #2acef7; +} + +.focus\:bg-toggle:focus { + background-color: #ffa500; +} + .focus\:bg-gray-100:focus { background-color: #f7fafc; } @@ -3845,6 +1725,14 @@ video { border-color: #E7AB4D; } +.border-react { + border-color: #2acef7; +} + +.border-toggle { + border-color: #ffa500; +} + .border-gray-100 { border-color: #f7fafc; } @@ -3937,6 +1825,14 @@ video { border-color: #E7AB4D; } +.hover\:border-react:hover { + border-color: #2acef7; +} + +.hover\:border-toggle:hover { + border-color: #ffa500; +} + .hover\:border-gray-100:hover { border-color: #f7fafc; } @@ -4029,6 +1925,14 @@ video { border-color: #E7AB4D; } +.focus\:border-react:focus { + border-color: #2acef7; +} + +.focus\:border-toggle:focus { + border-color: #ffa500; +} + .focus\:border-gray-100:focus { border-color: #f7fafc; } @@ -7057,6 +4961,14 @@ video { color: #E7AB4D; } +.placeholder-react::placeholder { + color: #2acef7; +} + +.placeholder-toggle::placeholder { + color: #ffa500; +} + .placeholder-gray-100::placeholder { color: #f7fafc; } @@ -7149,6 +5061,14 @@ video { color: #E7AB4D; } +.focus\:placeholder-react:focus::placeholder { + color: #2acef7; +} + +.focus\:placeholder-toggle:focus::placeholder { + color: #ffa500; +} + .focus\:placeholder-gray-100:focus::placeholder { color: #f7fafc; } @@ -7480,6 +5400,14 @@ video { color: #E7AB4D; } +.text-react { + color: #2acef7; +} + +.text-toggle { + color: #ffa500; +} + .text-gray-100 { color: #f7fafc; } @@ -7572,6 +5500,14 @@ video { color: #E7AB4D; } +.hover\:text-react:hover { + color: #2acef7; +} + +.hover\:text-toggle:hover { + color: #ffa500; +} + .hover\:text-gray-100:hover { color: #f7fafc; } @@ -7664,6 +5600,14 @@ video { color: #E7AB4D; } +.focus\:text-react:focus { + color: #2acef7; +} + +.focus\:text-toggle:focus { + color: #ffa500; +} + .focus\:text-gray-100:focus { color: #f7fafc; } @@ -8266,6 +6210,14 @@ video { background-color: #E7AB4D; } + .sm\:bg-react { + background-color: #2acef7; + } + + .sm\:bg-toggle { + background-color: #ffa500; + } + .sm\:bg-gray-100 { background-color: #f7fafc; } @@ -8358,6 +6310,14 @@ video { background-color: #E7AB4D; } + .sm\:hover\:bg-react:hover { + background-color: #2acef7; + } + + .sm\:hover\:bg-toggle:hover { + background-color: #ffa500; + } + .sm\:hover\:bg-gray-100:hover { background-color: #f7fafc; } @@ -8450,6 +6410,14 @@ video { background-color: #E7AB4D; } + .sm\:focus\:bg-react:focus { + background-color: #2acef7; + } + + .sm\:focus\:bg-toggle:focus { + background-color: #ffa500; + } + .sm\:focus\:bg-gray-100:focus { background-color: #f7fafc; } @@ -8622,6 +6590,14 @@ video { border-color: #E7AB4D; } + .sm\:border-react { + border-color: #2acef7; + } + + .sm\:border-toggle { + border-color: #ffa500; + } + .sm\:border-gray-100 { border-color: #f7fafc; } @@ -8714,6 +6690,14 @@ video { border-color: #E7AB4D; } + .sm\:hover\:border-react:hover { + border-color: #2acef7; + } + + .sm\:hover\:border-toggle:hover { + border-color: #ffa500; + } + .sm\:hover\:border-gray-100:hover { border-color: #f7fafc; } @@ -8806,6 +6790,14 @@ video { border-color: #E7AB4D; } + .sm\:focus\:border-react:focus { + border-color: #2acef7; + } + + .sm\:focus\:border-toggle:focus { + border-color: #ffa500; + } + .sm\:focus\:border-gray-100:focus { border-color: #f7fafc; } @@ -11834,6 +9826,14 @@ video { color: #E7AB4D; } + .sm\:placeholder-react::placeholder { + color: #2acef7; + } + + .sm\:placeholder-toggle::placeholder { + color: #ffa500; + } + .sm\:placeholder-gray-100::placeholder { color: #f7fafc; } @@ -11926,6 +9926,14 @@ video { color: #E7AB4D; } + .sm\:focus\:placeholder-react:focus::placeholder { + color: #2acef7; + } + + .sm\:focus\:placeholder-toggle:focus::placeholder { + color: #ffa500; + } + .sm\:focus\:placeholder-gray-100:focus::placeholder { color: #f7fafc; } @@ -12257,6 +10265,14 @@ video { color: #E7AB4D; } + .sm\:text-react { + color: #2acef7; + } + + .sm\:text-toggle { + color: #ffa500; + } + .sm\:text-gray-100 { color: #f7fafc; } @@ -12349,6 +10365,14 @@ video { color: #E7AB4D; } + .sm\:hover\:text-react:hover { + color: #2acef7; + } + + .sm\:hover\:text-toggle:hover { + color: #ffa500; + } + .sm\:hover\:text-gray-100:hover { color: #f7fafc; } @@ -12441,6 +10465,14 @@ video { color: #E7AB4D; } + .sm\:focus\:text-react:focus { + color: #2acef7; + } + + .sm\:focus\:text-toggle:focus { + color: #ffa500; + } + .sm\:focus\:text-gray-100:focus { color: #f7fafc; } @@ -13044,6 +11076,14 @@ video { background-color: #E7AB4D; } + .md\:bg-react { + background-color: #2acef7; + } + + .md\:bg-toggle { + background-color: #ffa500; + } + .md\:bg-gray-100 { background-color: #f7fafc; } @@ -13136,6 +11176,14 @@ video { background-color: #E7AB4D; } + .md\:hover\:bg-react:hover { + background-color: #2acef7; + } + + .md\:hover\:bg-toggle:hover { + background-color: #ffa500; + } + .md\:hover\:bg-gray-100:hover { background-color: #f7fafc; } @@ -13228,6 +11276,14 @@ video { background-color: #E7AB4D; } + .md\:focus\:bg-react:focus { + background-color: #2acef7; + } + + .md\:focus\:bg-toggle:focus { + background-color: #ffa500; + } + .md\:focus\:bg-gray-100:focus { background-color: #f7fafc; } @@ -13400,6 +11456,14 @@ video { border-color: #E7AB4D; } + .md\:border-react { + border-color: #2acef7; + } + + .md\:border-toggle { + border-color: #ffa500; + } + .md\:border-gray-100 { border-color: #f7fafc; } @@ -13492,6 +11556,14 @@ video { border-color: #E7AB4D; } + .md\:hover\:border-react:hover { + border-color: #2acef7; + } + + .md\:hover\:border-toggle:hover { + border-color: #ffa500; + } + .md\:hover\:border-gray-100:hover { border-color: #f7fafc; } @@ -13584,6 +11656,14 @@ video { border-color: #E7AB4D; } + .md\:focus\:border-react:focus { + border-color: #2acef7; + } + + .md\:focus\:border-toggle:focus { + border-color: #ffa500; + } + .md\:focus\:border-gray-100:focus { border-color: #f7fafc; } @@ -16612,6 +14692,14 @@ video { color: #E7AB4D; } + .md\:placeholder-react::placeholder { + color: #2acef7; + } + + .md\:placeholder-toggle::placeholder { + color: #ffa500; + } + .md\:placeholder-gray-100::placeholder { color: #f7fafc; } @@ -16704,6 +14792,14 @@ video { color: #E7AB4D; } + .md\:focus\:placeholder-react:focus::placeholder { + color: #2acef7; + } + + .md\:focus\:placeholder-toggle:focus::placeholder { + color: #ffa500; + } + .md\:focus\:placeholder-gray-100:focus::placeholder { color: #f7fafc; } @@ -17035,6 +15131,14 @@ video { color: #E7AB4D; } + .md\:text-react { + color: #2acef7; + } + + .md\:text-toggle { + color: #ffa500; + } + .md\:text-gray-100 { color: #f7fafc; } @@ -17127,6 +15231,14 @@ video { color: #E7AB4D; } + .md\:hover\:text-react:hover { + color: #2acef7; + } + + .md\:hover\:text-toggle:hover { + color: #ffa500; + } + .md\:hover\:text-gray-100:hover { color: #f7fafc; } @@ -17219,6 +15331,14 @@ video { color: #E7AB4D; } + .md\:focus\:text-react:focus { + color: #2acef7; + } + + .md\:focus\:text-toggle:focus { + color: #ffa500; + } + .md\:focus\:text-gray-100:focus { color: #f7fafc; } @@ -17822,6 +15942,14 @@ video { background-color: #E7AB4D; } + .lg\:bg-react { + background-color: #2acef7; + } + + .lg\:bg-toggle { + background-color: #ffa500; + } + .lg\:bg-gray-100 { background-color: #f7fafc; } @@ -17914,6 +16042,14 @@ video { background-color: #E7AB4D; } + .lg\:hover\:bg-react:hover { + background-color: #2acef7; + } + + .lg\:hover\:bg-toggle:hover { + background-color: #ffa500; + } + .lg\:hover\:bg-gray-100:hover { background-color: #f7fafc; } @@ -18006,6 +16142,14 @@ video { background-color: #E7AB4D; } + .lg\:focus\:bg-react:focus { + background-color: #2acef7; + } + + .lg\:focus\:bg-toggle:focus { + background-color: #ffa500; + } + .lg\:focus\:bg-gray-100:focus { background-color: #f7fafc; } @@ -18178,6 +16322,14 @@ video { border-color: #E7AB4D; } + .lg\:border-react { + border-color: #2acef7; + } + + .lg\:border-toggle { + border-color: #ffa500; + } + .lg\:border-gray-100 { border-color: #f7fafc; } @@ -18270,6 +16422,14 @@ video { border-color: #E7AB4D; } + .lg\:hover\:border-react:hover { + border-color: #2acef7; + } + + .lg\:hover\:border-toggle:hover { + border-color: #ffa500; + } + .lg\:hover\:border-gray-100:hover { border-color: #f7fafc; } @@ -18362,6 +16522,14 @@ video { border-color: #E7AB4D; } + .lg\:focus\:border-react:focus { + border-color: #2acef7; + } + + .lg\:focus\:border-toggle:focus { + border-color: #ffa500; + } + .lg\:focus\:border-gray-100:focus { border-color: #f7fafc; } @@ -21390,6 +19558,14 @@ video { color: #E7AB4D; } + .lg\:placeholder-react::placeholder { + color: #2acef7; + } + + .lg\:placeholder-toggle::placeholder { + color: #ffa500; + } + .lg\:placeholder-gray-100::placeholder { color: #f7fafc; } @@ -21482,6 +19658,14 @@ video { color: #E7AB4D; } + .lg\:focus\:placeholder-react:focus::placeholder { + color: #2acef7; + } + + .lg\:focus\:placeholder-toggle:focus::placeholder { + color: #ffa500; + } + .lg\:focus\:placeholder-gray-100:focus::placeholder { color: #f7fafc; } @@ -21813,6 +19997,14 @@ video { color: #E7AB4D; } + .lg\:text-react { + color: #2acef7; + } + + .lg\:text-toggle { + color: #ffa500; + } + .lg\:text-gray-100 { color: #f7fafc; } @@ -21905,6 +20097,14 @@ video { color: #E7AB4D; } + .lg\:hover\:text-react:hover { + color: #2acef7; + } + + .lg\:hover\:text-toggle:hover { + color: #ffa500; + } + .lg\:hover\:text-gray-100:hover { color: #f7fafc; } @@ -21997,6 +20197,14 @@ video { color: #E7AB4D; } + .lg\:focus\:text-react:focus { + color: #2acef7; + } + + .lg\:focus\:text-toggle:focus { + color: #ffa500; + } + .lg\:focus\:text-gray-100:focus { color: #f7fafc; } @@ -22600,6 +20808,14 @@ video { background-color: #E7AB4D; } + .xl\:bg-react { + background-color: #2acef7; + } + + .xl\:bg-toggle { + background-color: #ffa500; + } + .xl\:bg-gray-100 { background-color: #f7fafc; } @@ -22692,6 +20908,14 @@ video { background-color: #E7AB4D; } + .xl\:hover\:bg-react:hover { + background-color: #2acef7; + } + + .xl\:hover\:bg-toggle:hover { + background-color: #ffa500; + } + .xl\:hover\:bg-gray-100:hover { background-color: #f7fafc; } @@ -22784,6 +21008,14 @@ video { background-color: #E7AB4D; } + .xl\:focus\:bg-react:focus { + background-color: #2acef7; + } + + .xl\:focus\:bg-toggle:focus { + background-color: #ffa500; + } + .xl\:focus\:bg-gray-100:focus { background-color: #f7fafc; } @@ -22956,6 +21188,14 @@ video { border-color: #E7AB4D; } + .xl\:border-react { + border-color: #2acef7; + } + + .xl\:border-toggle { + border-color: #ffa500; + } + .xl\:border-gray-100 { border-color: #f7fafc; } @@ -23048,6 +21288,14 @@ video { border-color: #E7AB4D; } + .xl\:hover\:border-react:hover { + border-color: #2acef7; + } + + .xl\:hover\:border-toggle:hover { + border-color: #ffa500; + } + .xl\:hover\:border-gray-100:hover { border-color: #f7fafc; } @@ -23140,6 +21388,14 @@ video { border-color: #E7AB4D; } + .xl\:focus\:border-react:focus { + border-color: #2acef7; + } + + .xl\:focus\:border-toggle:focus { + border-color: #ffa500; + } + .xl\:focus\:border-gray-100:focus { border-color: #f7fafc; } @@ -26168,6 +24424,14 @@ video { color: #E7AB4D; } + .xl\:placeholder-react::placeholder { + color: #2acef7; + } + + .xl\:placeholder-toggle::placeholder { + color: #ffa500; + } + .xl\:placeholder-gray-100::placeholder { color: #f7fafc; } @@ -26260,6 +24524,14 @@ video { color: #E7AB4D; } + .xl\:focus\:placeholder-react:focus::placeholder { + color: #2acef7; + } + + .xl\:focus\:placeholder-toggle:focus::placeholder { + color: #ffa500; + } + .xl\:focus\:placeholder-gray-100:focus::placeholder { color: #f7fafc; } @@ -26591,6 +24863,14 @@ video { color: #E7AB4D; } + .xl\:text-react { + color: #2acef7; + } + + .xl\:text-toggle { + color: #ffa500; + } + .xl\:text-gray-100 { color: #f7fafc; } @@ -26683,6 +24963,14 @@ video { color: #E7AB4D; } + .xl\:hover\:text-react:hover { + color: #2acef7; + } + + .xl\:hover\:text-toggle:hover { + color: #ffa500; + } + .xl\:hover\:text-gray-100:hover { color: #f7fafc; } @@ -26775,6 +25063,14 @@ video { color: #E7AB4D; } + .xl\:focus\:text-react:focus { + color: #2acef7; + } + + .xl\:focus\:text-toggle:focus { + color: #ffa500; + } + .xl\:focus\:text-gray-100:focus { color: #f7fafc; } diff --git a/src/styles/styles.css b/src/styles/styles.css index f2b5983..a00a64a 100644 --- a/src/styles/styles.css +++ b/src/styles/styles.css @@ -507,1665 +507,6 @@ template { [hidden] { display: none; } -@font-face { - font-family: 'fontello'; - src: url("../fonts/fontello.woff2?10498634") format("woff2"), url("../fonts/fontello.woff?10498634") format("woff"), url("../fonts/fontello.ttf?10498634") format("truetype"), url("../fonts/fontello.svg?10498634#fontello") format("svg"); - font-weight: normal; - font-style: normal; } - -[class^='icon-']:before, -[class*=' icon-']:before { - font-family: 'fontello'; - font-style: normal; - font-weight: normal; - display: inline-block; - text-decoration: inherit; - width: 1em; - margin-right: 0.2em; - text-align: center; - /* opacity: .8; */ - /* For safety - reset parent styles, that can break glyph codes*/ - font-variant: normal; - text-transform: none; - /* fix buttons height, for twitter bootstrap */ - line-height: 1em; - /* Animation center compensation - margins should be symmetric */ - /* remove if not needed */ - margin-left: 0.2em; - /* you can be more comfortable with increased icons size */ - /* font-size: 120%; */ - /* Font smoothing. That was taken from TWBS */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - /* Uncomment for 3D effect */ - text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); } - -.icon-heart:before { - content: '\e800'; } - -.icon-heart-empty:before { - content: '\e801'; } - -.icon-search:before { - content: '\e802'; } - -.icon-up-arrow:before { - content: '\e803'; } - -.icon-down-arrow:before { - content: '\e804'; } - -.icon-cw:before { - content: '\e809'; } - -.icon-percent:before { - content: '\f295'; } - -/*! - * Weather Icons 2.0.8 - * Updated September 19, 2015 - * Weather themed icons for Bootstrap - * Author - Erik Flowers - erik@helloerik.com - * Email: erik@helloerik.com - * Twitter: http://twitter.com/Erik_UX - * ------------------------------------------------------------------------------ - * Maintained at http://erikflowers.github.io/weather-icons - * - * License - * ------------------------------------------------------------------------------ - * - Font licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - CSS, SCSS and LESS are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Inspired by and works great as a companion with Font Awesome - * "Font Awesome by Dave Gandy - http://fontawesome.io" - */ -@font-face { - font-family: 'weathericons'; - src: url("../fonts/weathericons-regular-webfont.woff2") format("woff2"), url("../fonts/weathericons-regular-webfont.woff") format("woff"), url("../fonts/weathericons-regular-webfont.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -.wi { - display: inline-block; - font-family: 'weathericons'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } - -.wi-fw { - text-align: center; - width: 1.4em; } - -.wi-rotate-90 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); } - -.wi-rotate-180 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); } - -.wi-rotate-270 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); } - -.wi-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); } - -.wi-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); } - -.wi-day-sunny:before { - content: '\f00d'; } - -.wi-day-cloudy:before { - content: '\f002'; } - -.wi-day-cloudy-gusts:before { - content: '\f000'; } - -.wi-day-cloudy-windy:before { - content: '\f001'; } - -.wi-day-fog:before { - content: '\f003'; } - -.wi-day-hail:before { - content: '\f004'; } - -.wi-day-haze:before { - content: '\f0b6'; } - -.wi-day-lightning:before { - content: '\f005'; } - -.wi-day-rain:before { - content: '\f008'; } - -.wi-day-rain-mix:before { - content: '\f006'; } - -.wi-day-rain-wind:before { - content: '\f007'; } - -.wi-day-showers:before { - content: '\f009'; } - -.wi-day-sleet:before { - content: '\f0b2'; } - -.wi-day-sleet-storm:before { - content: '\f068'; } - -.wi-day-snow:before { - content: '\f00a'; } - -.wi-day-snow-thunderstorm:before { - content: '\f06b'; } - -.wi-day-snow-wind:before { - content: '\f065'; } - -.wi-day-sprinkle:before { - content: '\f00b'; } - -.wi-day-storm-showers:before { - content: '\f00e'; } - -.wi-day-sunny-overcast:before { - content: '\f00c'; } - -.wi-day-thunderstorm:before { - content: '\f010'; } - -.wi-day-windy:before { - content: '\f085'; } - -.wi-solar-eclipse:before { - content: '\f06e'; } - -.wi-hot:before { - content: '\f072'; } - -.wi-day-cloudy-high:before { - content: '\f07d'; } - -.wi-day-light-wind:before { - content: '\f0c4'; } - -.wi-night-clear:before { - content: '\f02e'; } - -.wi-night-alt-cloudy:before { - content: '\f086'; } - -.wi-night-alt-cloudy-gusts:before { - content: '\f022'; } - -.wi-night-alt-cloudy-windy:before { - content: '\f023'; } - -.wi-night-alt-hail:before { - content: '\f024'; } - -.wi-night-alt-lightning:before { - content: '\f025'; } - -.wi-night-alt-rain:before { - content: '\f028'; } - -.wi-night-alt-rain-mix:before { - content: '\f026'; } - -.wi-night-alt-rain-wind:before { - content: '\f027'; } - -.wi-night-alt-showers:before { - content: '\f029'; } - -.wi-night-alt-sleet:before { - content: '\f0b4'; } - -.wi-night-alt-sleet-storm:before { - content: '\f06a'; } - -.wi-night-alt-snow:before { - content: '\f02a'; } - -.wi-night-alt-snow-thunderstorm:before { - content: '\f06d'; } - -.wi-night-alt-snow-wind:before { - content: '\f067'; } - -.wi-night-alt-sprinkle:before { - content: '\f02b'; } - -.wi-night-alt-storm-showers:before { - content: '\f02c'; } - -.wi-night-alt-thunderstorm:before { - content: '\f02d'; } - -.wi-night-cloudy:before { - content: '\f031'; } - -.wi-night-cloudy-gusts:before { - content: '\f02f'; } - -.wi-night-cloudy-windy:before { - content: '\f030'; } - -.wi-night-fog:before { - content: '\f04a'; } - -.wi-night-hail:before { - content: '\f032'; } - -.wi-night-lightning:before { - content: '\f033'; } - -.wi-night-partly-cloudy:before { - content: '\f083'; } - -.wi-night-rain:before { - content: '\f036'; } - -.wi-night-rain-mix:before { - content: '\f034'; } - -.wi-night-rain-wind:before { - content: '\f035'; } - -.wi-night-showers:before { - content: '\f037'; } - -.wi-night-sleet:before { - content: '\f0b3'; } - -.wi-night-sleet-storm:before { - content: '\f069'; } - -.wi-night-snow:before { - content: '\f038'; } - -.wi-night-snow-thunderstorm:before { - content: '\f06c'; } - -.wi-night-snow-wind:before { - content: '\f066'; } - -.wi-night-sprinkle:before { - content: '\f039'; } - -.wi-night-storm-showers:before { - content: '\f03a'; } - -.wi-night-thunderstorm:before { - content: '\f03b'; } - -.wi-lunar-eclipse:before { - content: '\f070'; } - -.wi-stars:before { - content: '\f077'; } - -.wi-storm-showers:before { - content: '\f01d'; } - -.wi-thunderstorm:before { - content: '\f01e'; } - -.wi-night-alt-cloudy-high:before { - content: '\f07e'; } - -.wi-night-cloudy-high:before { - content: '\f080'; } - -.wi-night-alt-partly-cloudy:before { - content: '\f081'; } - -.wi-cloud:before { - content: '\f041'; } - -.wi-cloudy:before { - content: '\f013'; } - -.wi-cloudy-gusts:before { - content: '\f011'; } - -.wi-cloudy-windy:before { - content: '\f012'; } - -.wi-fog:before { - content: '\f014'; } - -.wi-hail:before { - content: '\f015'; } - -.wi-rain:before { - content: '\f019'; } - -.wi-rain-mix:before { - content: '\f017'; } - -.wi-rain-wind:before { - content: '\f018'; } - -.wi-showers:before { - content: '\f01a'; } - -.wi-sleet:before { - content: '\f0b5'; } - -.wi-snow:before { - content: '\f01b'; } - -.wi-sprinkle:before { - content: '\f01c'; } - -.wi-storm-showers:before { - content: '\f01d'; } - -.wi-thunderstorm:before { - content: '\f01e'; } - -.wi-snow-wind:before { - content: '\f064'; } - -.wi-snow:before { - content: '\f01b'; } - -.wi-smog:before { - content: '\f074'; } - -.wi-smoke:before { - content: '\f062'; } - -.wi-lightning:before { - content: '\f016'; } - -.wi-raindrops:before { - content: '\f04e'; } - -.wi-raindrop:before { - content: '\f078'; } - -.wi-dust:before { - content: '\f063'; } - -.wi-snowflake-cold:before { - content: '\f076'; } - -.wi-windy:before { - content: '\f021'; } - -.wi-strong-wind:before { - content: '\f050'; } - -.wi-sandstorm:before { - content: '\f082'; } - -.wi-earthquake:before { - content: '\f0c6'; } - -.wi-fire:before { - content: '\f0c7'; } - -.wi-flood:before { - content: '\f07c'; } - -.wi-meteor:before { - content: '\f071'; } - -.wi-tsunami:before { - content: '\f0c5'; } - -.wi-volcano:before { - content: '\f0c8'; } - -.wi-hurricane:before { - content: '\f073'; } - -.wi-tornado:before { - content: '\f056'; } - -.wi-small-craft-advisory:before { - content: '\f0cc'; } - -.wi-gale-warning:before { - content: '\f0cd'; } - -.wi-storm-warning:before { - content: '\f0ce'; } - -.wi-hurricane-warning:before { - content: '\f0cf'; } - -.wi-wind-direction:before { - content: '\f0b1'; } - -.wi-alien:before { - content: '\f075'; } - -.wi-celsius:before { - content: '\f03c'; } - -.wi-fahrenheit:before { - content: '\f045'; } - -.wi-degrees:before { - content: '\f042'; } - -.wi-thermometer:before { - content: '\f055'; } - -.wi-thermometer-exterior:before { - content: '\f053'; } - -.wi-thermometer-internal:before { - content: '\f054'; } - -.wi-cloud-down:before { - content: '\f03d'; } - -.wi-cloud-up:before { - content: '\f040'; } - -.wi-cloud-refresh:before { - content: '\f03e'; } - -.wi-horizon:before { - content: '\f047'; } - -.wi-horizon-alt:before { - content: '\f046'; } - -.wi-sunrise:before { - content: '\f051'; } - -.wi-sunset:before { - content: '\f052'; } - -.wi-moonrise:before { - content: '\f0c9'; } - -.wi-moonset:before { - content: '\f0ca'; } - -.wi-refresh:before { - content: '\f04c'; } - -.wi-refresh-alt:before { - content: '\f04b'; } - -.wi-umbrella:before { - content: '\f084'; } - -.wi-barometer:before { - content: '\f079'; } - -.wi-humidity:before { - content: '\f07a'; } - -.wi-na:before { - content: '\f07b'; } - -.wi-train:before { - content: '\f0cb'; } - -.wi-moon-new:before { - content: '\f095'; } - -.wi-moon-waxing-crescent-1:before { - content: '\f096'; } - -.wi-moon-waxing-crescent-2:before { - content: '\f097'; } - -.wi-moon-waxing-crescent-3:before { - content: '\f098'; } - -.wi-moon-waxing-crescent-4:before { - content: '\f099'; } - -.wi-moon-waxing-crescent-5:before { - content: '\f09a'; } - -.wi-moon-waxing-crescent-6:before { - content: '\f09b'; } - -.wi-moon-first-quarter:before { - content: '\f09c'; } - -.wi-moon-waxing-gibbous-1:before { - content: '\f09d'; } - -.wi-moon-waxing-gibbous-2:before { - content: '\f09e'; } - -.wi-moon-waxing-gibbous-3:before { - content: '\f09f'; } - -.wi-moon-waxing-gibbous-4:before { - content: '\f0a0'; } - -.wi-moon-waxing-gibbous-5:before { - content: '\f0a1'; } - -.wi-moon-waxing-gibbous-6:before { - content: '\f0a2'; } - -.wi-moon-full:before { - content: '\f0a3'; } - -.wi-moon-waning-gibbous-1:before { - content: '\f0a4'; } - -.wi-moon-waning-gibbous-2:before { - content: '\f0a5'; } - -.wi-moon-waning-gibbous-3:before { - content: '\f0a6'; } - -.wi-moon-waning-gibbous-4:before { - content: '\f0a7'; } - -.wi-moon-waning-gibbous-5:before { - content: '\f0a8'; } - -.wi-moon-waning-gibbous-6:before { - content: '\f0a9'; } - -.wi-moon-third-quarter:before { - content: '\f0aa'; } - -.wi-moon-waning-crescent-1:before { - content: '\f0ab'; } - -.wi-moon-waning-crescent-2:before { - content: '\f0ac'; } - -.wi-moon-waning-crescent-3:before { - content: '\f0ad'; } - -.wi-moon-waning-crescent-4:before { - content: '\f0ae'; } - -.wi-moon-waning-crescent-5:before { - content: '\f0af'; } - -.wi-moon-waning-crescent-6:before { - content: '\f0b0'; } - -.wi-moon-alt-new:before { - content: '\f0eb'; } - -.wi-moon-alt-waxing-crescent-1:before { - content: '\f0d0'; } - -.wi-moon-alt-waxing-crescent-2:before { - content: '\f0d1'; } - -.wi-moon-alt-waxing-crescent-3:before { - content: '\f0d2'; } - -.wi-moon-alt-waxing-crescent-4:before { - content: '\f0d3'; } - -.wi-moon-alt-waxing-crescent-5:before { - content: '\f0d4'; } - -.wi-moon-alt-waxing-crescent-6:before { - content: '\f0d5'; } - -.wi-moon-alt-first-quarter:before { - content: '\f0d6'; } - -.wi-moon-alt-waxing-gibbous-1:before { - content: '\f0d7'; } - -.wi-moon-alt-waxing-gibbous-2:before { - content: '\f0d8'; } - -.wi-moon-alt-waxing-gibbous-3:before { - content: '\f0d9'; } - -.wi-moon-alt-waxing-gibbous-4:before { - content: '\f0da'; } - -.wi-moon-alt-waxing-gibbous-5:before { - content: '\f0db'; } - -.wi-moon-alt-waxing-gibbous-6:before { - content: '\f0dc'; } - -.wi-moon-alt-full:before { - content: '\f0dd'; } - -.wi-moon-alt-waning-gibbous-1:before { - content: '\f0de'; } - -.wi-moon-alt-waning-gibbous-2:before { - content: '\f0df'; } - -.wi-moon-alt-waning-gibbous-3:before { - content: '\f0e0'; } - -.wi-moon-alt-waning-gibbous-4:before { - content: '\f0e1'; } - -.wi-moon-alt-waning-gibbous-5:before { - content: '\f0e2'; } - -.wi-moon-alt-waning-gibbous-6:before { - content: '\f0e3'; } - -.wi-moon-alt-third-quarter:before { - content: '\f0e4'; } - -.wi-moon-alt-waning-crescent-1:before { - content: '\f0e5'; } - -.wi-moon-alt-waning-crescent-2:before { - content: '\f0e6'; } - -.wi-moon-alt-waning-crescent-3:before { - content: '\f0e7'; } - -.wi-moon-alt-waning-crescent-4:before { - content: '\f0e8'; } - -.wi-moon-alt-waning-crescent-5:before { - content: '\f0e9'; } - -.wi-moon-alt-waning-crescent-6:before { - content: '\f0ea'; } - -.wi-moon-0:before { - content: '\f095'; } - -.wi-moon-1:before { - content: '\f096'; } - -.wi-moon-2:before { - content: '\f097'; } - -.wi-moon-3:before { - content: '\f098'; } - -.wi-moon-4:before { - content: '\f099'; } - -.wi-moon-5:before { - content: '\f09a'; } - -.wi-moon-6:before { - content: '\f09b'; } - -.wi-moon-7:before { - content: '\f09c'; } - -.wi-moon-8:before { - content: '\f09d'; } - -.wi-moon-9:before { - content: '\f09e'; } - -.wi-moon-10:before { - content: '\f09f'; } - -.wi-moon-11:before { - content: '\f0a0'; } - -.wi-moon-12:before { - content: '\f0a1'; } - -.wi-moon-13:before { - content: '\f0a2'; } - -.wi-moon-14:before { - content: '\f0a3'; } - -.wi-moon-15:before { - content: '\f0a4'; } - -.wi-moon-16:before { - content: '\f0a5'; } - -.wi-moon-17:before { - content: '\f0a6'; } - -.wi-moon-18:before { - content: '\f0a7'; } - -.wi-moon-19:before { - content: '\f0a8'; } - -.wi-moon-20:before { - content: '\f0a9'; } - -.wi-moon-21:before { - content: '\f0aa'; } - -.wi-moon-22:before { - content: '\f0ab'; } - -.wi-moon-23:before { - content: '\f0ac'; } - -.wi-moon-24:before { - content: '\f0ad'; } - -.wi-moon-25:before { - content: '\f0ae'; } - -.wi-moon-26:before { - content: '\f0af'; } - -.wi-moon-27:before { - content: '\f0b0'; } - -.wi-time-1:before { - content: '\f08a'; } - -.wi-time-2:before { - content: '\f08b'; } - -.wi-time-3:before { - content: '\f08c'; } - -.wi-time-4:before { - content: '\f08d'; } - -.wi-time-5:before { - content: '\f08e'; } - -.wi-time-6:before { - content: '\f08f'; } - -.wi-time-7:before { - content: '\f090'; } - -.wi-time-8:before { - content: '\f091'; } - -.wi-time-9:before { - content: '\f092'; } - -.wi-time-10:before { - content: '\f093'; } - -.wi-time-11:before { - content: '\f094'; } - -.wi-time-12:before { - content: '\f089'; } - -.wi-direction-up:before { - content: '\f058'; } - -.wi-direction-up-right:before { - content: '\f057'; } - -.wi-direction-right:before { - content: '\f04d'; } - -.wi-direction-down-right:before { - content: '\f088'; } - -.wi-direction-down:before { - content: '\f044'; } - -.wi-direction-down-left:before { - content: '\f043'; } - -.wi-direction-left:before { - content: '\f048'; } - -.wi-direction-up-left:before { - content: '\f087'; } - -.wi-wind-beaufort-0:before { - content: '\f0b7'; } - -.wi-wind-beaufort-1:before { - content: '\f0b8'; } - -.wi-wind-beaufort-2:before { - content: '\f0b9'; } - -.wi-wind-beaufort-3:before { - content: '\f0ba'; } - -.wi-wind-beaufort-4:before { - content: '\f0bb'; } - -.wi-wind-beaufort-5:before { - content: '\f0bc'; } - -.wi-wind-beaufort-6:before { - content: '\f0bd'; } - -.wi-wind-beaufort-7:before { - content: '\f0be'; } - -.wi-wind-beaufort-8:before { - content: '\f0bf'; } - -.wi-wind-beaufort-9:before { - content: '\f0c0'; } - -.wi-wind-beaufort-10:before { - content: '\f0c1'; } - -.wi-wind-beaufort-11:before { - content: '\f0c2'; } - -.wi-wind-beaufort-12:before { - content: '\f0c3'; } - -.wi-yahoo-0:before { - content: '\f056'; } - -.wi-yahoo-1:before { - content: '\f00e'; } - -.wi-yahoo-2:before { - content: '\f073'; } - -.wi-yahoo-3:before, -.wi-yahoo-4:before { - content: '\f01e'; } - -.wi-yahoo-5:before, -.wi-yahoo-6:before, -.wi-yahoo-7:before { - content: '\f017'; } - -.wi-yahoo-8:before { - content: '\f015'; } - -.wi-yahoo-9:before { - content: '\f01a'; } - -.wi-yahoo-10:before { - content: '\f015'; } - -.wi-yahoo-11:before, -.wi-yahoo-12:before { - content: '\f01a'; } - -.wi-yahoo-13:before { - content: '\f01b'; } - -.wi-yahoo-14:before { - content: '\f00a'; } - -.wi-yahoo-15:before { - content: '\f064'; } - -.wi-yahoo-16:before { - content: '\f01b'; } - -.wi-yahoo-17:before { - content: '\f015'; } - -.wi-yahoo-18:before { - content: '\f017'; } - -.wi-yahoo-19:before { - content: '\f063'; } - -.wi-yahoo-20:before { - content: '\f014'; } - -.wi-yahoo-21:before { - content: '\f021'; } - -.wi-yahoo-22:before { - content: '\f062'; } - -.wi-yahoo-23:before, -.wi-yahoo-24:before { - content: '\f050'; } - -.wi-yahoo-25:before { - content: '\f076'; } - -.wi-yahoo-26:before { - content: '\f013'; } - -.wi-yahoo-27:before { - content: '\f031'; } - -.wi-yahoo-28:before { - content: '\f002'; } - -.wi-yahoo-29:before { - content: '\f031'; } - -.wi-yahoo-30:before { - content: '\f002'; } - -.wi-yahoo-31:before { - content: '\f02e'; } - -.wi-yahoo-32:before { - content: '\f00d'; } - -.wi-yahoo-33:before { - content: '\f083'; } - -.wi-yahoo-34:before { - content: '\f00c'; } - -.wi-yahoo-35:before { - content: '\f017'; } - -.wi-yahoo-36:before { - content: '\f072'; } - -.wi-yahoo-37:before, -.wi-yahoo-38:before, -.wi-yahoo-39:before { - content: '\f00e'; } - -.wi-yahoo-40:before { - content: '\f01a'; } - -.wi-yahoo-41:before { - content: '\f064'; } - -.wi-yahoo-42:before { - content: '\f01b'; } - -.wi-yahoo-43:before { - content: '\f064'; } - -.wi-yahoo-44:before { - content: '\f00c'; } - -.wi-yahoo-45:before { - content: '\f00e'; } - -.wi-yahoo-46:before { - content: '\f01b'; } - -.wi-yahoo-47:before { - content: '\f00e'; } - -.wi-yahoo-3200:before { - content: '\f077'; } - -.wi-forecast-io-clear-day:before { - content: '\f00d'; } - -.wi-forecast-io-clear-night:before { - content: '\f02e'; } - -.wi-forecast-io-rain:before { - content: '\f019'; } - -.wi-forecast-io-snow:before { - content: '\f01b'; } - -.wi-forecast-io-sleet:before { - content: '\f0b5'; } - -.wi-forecast-io-wind:before { - content: '\f050'; } - -.wi-forecast-io-fog:before { - content: '\f014'; } - -.wi-forecast-io-cloudy:before { - content: '\f013'; } - -.wi-forecast-io-partly-cloudy-day:before { - content: '\f002'; } - -.wi-forecast-io-partly-cloudy-night:before { - content: '\f031'; } - -.wi-forecast-io-hail:before { - content: '\f015'; } - -.wi-forecast-io-thunderstorm:before { - content: '\f01e'; } - -.wi-forecast-io-tornado:before { - content: '\f056'; } - -.wi-wmo4680-0:before, -.wi-wmo4680-00:before { - content: '\f055'; } - -.wi-wmo4680-1:before, -.wi-wmo4680-01:before { - content: '\f013'; } - -.wi-wmo4680-2:before, -.wi-wmo4680-02:before { - content: '\f055'; } - -.wi-wmo4680-3:before, -.wi-wmo4680-03:before { - content: '\f013'; } - -.wi-wmo4680-4:before, -.wi-wmo4680-04:before, -.wi-wmo4680-5:before, -.wi-wmo4680-05:before, -.wi-wmo4680-10:before, -.wi-wmo4680-11:before { - content: '\f014'; } - -.wi-wmo4680-12:before { - content: '\f016'; } - -.wi-wmo4680-18:before { - content: '\f050'; } - -.wi-wmo4680-20:before { - content: '\f014'; } - -.wi-wmo4680-21:before, -.wi-wmo4680-22:before { - content: '\f017'; } - -.wi-wmo4680-23:before { - content: '\f019'; } - -.wi-wmo4680-24:before { - content: '\f01b'; } - -.wi-wmo4680-25:before { - content: '\f015'; } - -.wi-wmo4680-26:before { - content: '\f01e'; } - -.wi-wmo4680-27:before, -.wi-wmo4680-28:before, -.wi-wmo4680-29:before { - content: '\f063'; } - -.wi-wmo4680-30:before, -.wi-wmo4680-31:before, -.wi-wmo4680-32:before, -.wi-wmo4680-33:before, -.wi-wmo4680-34:before, -.wi-wmo4680-35:before { - content: '\f014'; } - -.wi-wmo4680-40:before { - content: '\f017'; } - -.wi-wmo4680-41:before { - content: '\f01c'; } - -.wi-wmo4680-42:before { - content: '\f019'; } - -.wi-wmo4680-43:before { - content: '\f01c'; } - -.wi-wmo4680-44:before { - content: '\f019'; } - -.wi-wmo4680-45:before, -.wi-wmo4680-46:before { - content: '\f015'; } - -.wi-wmo4680-47:before, -.wi-wmo4680-48:before { - content: '\f01b'; } - -.wi-wmo4680-50:before, -.wi-wmo4680-51:before { - content: '\f01c'; } - -.wi-wmo4680-52:before, -.wi-wmo4680-53:before { - content: '\f019'; } - -.wi-wmo4680-54:before, -.wi-wmo4680-55:before, -.wi-wmo4680-56:before { - content: '\f076'; } - -.wi-wmo4680-57:before { - content: '\f01c'; } - -.wi-wmo4680-58:before { - content: '\f019'; } - -.wi-wmo4680-60:before, -.wi-wmo4680-61:before { - content: '\f01c'; } - -.wi-wmo4680-62:before, -.wi-wmo4680-63:before { - content: '\f019'; } - -.wi-wmo4680-64:before, -.wi-wmo4680-65:before, -.wi-wmo4680-66:before { - content: '\f015'; } - -.wi-wmo4680-67:before, -.wi-wmo4680-68:before { - content: '\f017'; } - -.wi-wmo4680-70:before, -.wi-wmo4680-71:before, -.wi-wmo4680-72:before, -.wi-wmo4680-73:before { - content: '\f01b'; } - -.wi-wmo4680-74:before, -.wi-wmo4680-75:before, -.wi-wmo4680-76:before { - content: '\f076'; } - -.wi-wmo4680-77:before { - content: '\f01b'; } - -.wi-wmo4680-78:before { - content: '\f076'; } - -.wi-wmo4680-80:before { - content: '\f019'; } - -.wi-wmo4680-81:before { - content: '\f01c'; } - -.wi-wmo4680-82:before, -.wi-wmo4680-83:before { - content: '\f019'; } - -.wi-wmo4680-84:before { - content: '\f01d'; } - -.wi-wmo4680-85:before, -.wi-wmo4680-86:before, -.wi-wmo4680-87:before { - content: '\f017'; } - -.wi-wmo4680-89:before { - content: '\f015'; } - -.wi-wmo4680-90:before { - content: '\f016'; } - -.wi-wmo4680-91:before { - content: '\f01d'; } - -.wi-wmo4680-92:before, -.wi-wmo4680-93:before { - content: '\f01e'; } - -.wi-wmo4680-94:before { - content: '\f016'; } - -.wi-wmo4680-95:before, -.wi-wmo4680-96:before { - content: '\f01e'; } - -.wi-wmo4680-99:before { - content: '\f056'; } - -.wi-owm-200:before, -.wi-owm-201:before, -.wi-owm-202:before { - content: '\f01e'; } - -.wi-owm-210:before, -.wi-owm-211:before, -.wi-owm-212:before, -.wi-owm-221:before { - content: '\f016'; } - -.wi-owm-230:before, -.wi-owm-231:before, -.wi-owm-232:before { - content: '\f01e'; } - -.wi-owm-300:before, -.wi-owm-301:before { - content: '\f01c'; } - -.wi-owm-302:before { - content: '\f019'; } - -.wi-owm-310:before { - content: '\f017'; } - -.wi-owm-311:before, -.wi-owm-312:before { - content: '\f019'; } - -.wi-owm-313:before { - content: '\f01a'; } - -.wi-owm-314:before { - content: '\f019'; } - -.wi-owm-321:before, -.wi-owm-500:before { - content: '\f01c'; } - -.wi-owm-501:before, -.wi-owm-502:before, -.wi-owm-503:before, -.wi-owm-504:before { - content: '\f019'; } - -.wi-owm-511:before { - content: '\f017'; } - -.wi-owm-520:before, -.wi-owm-521:before, -.wi-owm-522:before { - content: '\f01a'; } - -.wi-owm-531:before { - content: '\f01d'; } - -.wi-owm-600:before, -.wi-owm-601:before { - content: '\f01b'; } - -.wi-owm-602:before { - content: '\f0b5'; } - -.wi-owm-611:before, -.wi-owm-612:before, -.wi-owm-615:before, -.wi-owm-616:before, -.wi-owm-620:before { - content: '\f017'; } - -.wi-owm-621:before, -.wi-owm-622:before { - content: '\f01b'; } - -.wi-owm-701:before { - content: '\f014'; } - -.wi-owm-711:before { - content: '\f062'; } - -.wi-owm-721:before { - content: '\f0b6'; } - -.wi-owm-731:before { - content: '\f063'; } - -.wi-owm-741:before { - content: '\f014'; } - -.wi-owm-761:before, -.wi-owm-762:before { - content: '\f063'; } - -.wi-owm-771:before { - content: '\f011'; } - -.wi-owm-781:before { - content: '\f056'; } - -.wi-owm-800:before { - content: '\f00d'; } - -.wi-owm-801:before, -.wi-owm-802:before { - content: '\f011'; } - -.wi-owm-803:before { - content: '\f012'; } - -.wi-owm-804:before { - content: '\f013'; } - -.wi-owm-900:before { - content: '\f056'; } - -.wi-owm-901:before { - content: '\f01d'; } - -.wi-owm-902:before { - content: '\f073'; } - -.wi-owm-903:before { - content: '\f076'; } - -.wi-owm-904:before { - content: '\f072'; } - -.wi-owm-905:before { - content: '\f021'; } - -.wi-owm-906:before { - content: '\f015'; } - -.wi-owm-957:before { - content: '\f050'; } - -.wi-owm-day-200:before, -.wi-owm-day-201:before, -.wi-owm-day-202:before { - content: '\f010'; } - -.wi-owm-day-210:before, -.wi-owm-day-211:before, -.wi-owm-day-212:before, -.wi-owm-day-221:before { - content: '\f005'; } - -.wi-owm-day-230:before, -.wi-owm-day-231:before, -.wi-owm-day-232:before { - content: '\f010'; } - -.wi-owm-day-300:before, -.wi-owm-day-301:before { - content: '\f00b'; } - -.wi-owm-day-302:before, -.wi-owm-day-310:before, -.wi-owm-day-311:before, -.wi-owm-day-312:before, -.wi-owm-day-313:before, -.wi-owm-day-314:before { - content: '\f008'; } - -.wi-owm-day-321:before, -.wi-owm-day-500:before { - content: '\f00b'; } - -.wi-owm-day-501:before, -.wi-owm-day-502:before, -.wi-owm-day-503:before, -.wi-owm-day-504:before { - content: '\f008'; } - -.wi-owm-day-511:before { - content: '\f006'; } - -.wi-owm-day-520:before, -.wi-owm-day-521:before, -.wi-owm-day-522:before { - content: '\f009'; } - -.wi-owm-day-531:before { - content: '\f00e'; } - -.wi-owm-day-600:before { - content: '\f00a'; } - -.wi-owm-day-601:before { - content: '\f0b2'; } - -.wi-owm-day-602:before { - content: '\f00a'; } - -.wi-owm-day-611:before, -.wi-owm-day-612:before, -.wi-owm-day-615:before, -.wi-owm-day-616:before, -.wi-owm-day-620:before { - content: '\f006'; } - -.wi-owm-day-621:before, -.wi-owm-day-622:before { - content: '\f00a'; } - -.wi-owm-day-701:before { - content: '\f003'; } - -.wi-owm-day-711:before { - content: '\f062'; } - -.wi-owm-day-721:before { - content: '\f0b6'; } - -.wi-owm-day-731:before { - content: '\f063'; } - -.wi-owm-day-741:before { - content: '\f003'; } - -.wi-owm-day-761:before, -.wi-owm-day-762:before { - content: '\f063'; } - -.wi-owm-day-781:before { - content: '\f056'; } - -.wi-owm-day-800:before { - content: '\f00d'; } - -.wi-owm-day-801:before, -.wi-owm-day-802:before, -.wi-owm-day-803:before { - content: '\f000'; } - -.wi-owm-day-804:before { - content: '\f00c'; } - -.wi-owm-day-900:before { - content: '\f056'; } - -.wi-owm-day-902:before { - content: '\f073'; } - -.wi-owm-day-903:before { - content: '\f076'; } - -.wi-owm-day-904:before { - content: '\f072'; } - -.wi-owm-day-906:before { - content: '\f004'; } - -.wi-owm-day-957:before { - content: '\f050'; } - -.wi-owm-night-200:before, -.wi-owm-night-201:before, -.wi-owm-night-202:before { - content: '\f02d'; } - -.wi-owm-night-210:before, -.wi-owm-night-211:before, -.wi-owm-night-212:before, -.wi-owm-night-221:before { - content: '\f025'; } - -.wi-owm-night-230:before, -.wi-owm-night-231:before, -.wi-owm-night-232:before { - content: '\f02d'; } - -.wi-owm-night-300:before, -.wi-owm-night-301:before { - content: '\f02b'; } - -.wi-owm-night-302:before, -.wi-owm-night-310:before, -.wi-owm-night-311:before, -.wi-owm-night-312:before, -.wi-owm-night-313:before, -.wi-owm-night-314:before { - content: '\f028'; } - -.wi-owm-night-321:before, -.wi-owm-night-500:before { - content: '\f02b'; } - -.wi-owm-night-501:before, -.wi-owm-night-502:before, -.wi-owm-night-503:before, -.wi-owm-night-504:before { - content: '\f028'; } - -.wi-owm-night-511:before { - content: '\f026'; } - -.wi-owm-night-520:before, -.wi-owm-night-521:before, -.wi-owm-night-522:before { - content: '\f029'; } - -.wi-owm-night-531:before { - content: '\f02c'; } - -.wi-owm-night-600:before { - content: '\f02a'; } - -.wi-owm-night-601:before { - content: '\f0b4'; } - -.wi-owm-night-602:before { - content: '\f02a'; } - -.wi-owm-night-611:before, -.wi-owm-night-612:before, -.wi-owm-night-615:before, -.wi-owm-night-616:before, -.wi-owm-night-620:before { - content: '\f026'; } - -.wi-owm-night-621:before, -.wi-owm-night-622:before { - content: '\f02a'; } - -.wi-owm-night-701:before { - content: '\f04a'; } - -.wi-owm-night-711:before { - content: '\f062'; } - -.wi-owm-night-721:before { - content: '\f0b6'; } - -.wi-owm-night-731:before { - content: '\f063'; } - -.wi-owm-night-741:before { - content: '\f04a'; } - -.wi-owm-night-761:before, -.wi-owm-night-762:before { - content: '\f063'; } - -.wi-owm-night-781:before { - content: '\f056'; } - -.wi-owm-night-800:before { - content: '\f02e'; } - -.wi-owm-night-801:before, -.wi-owm-night-802:before, -.wi-owm-night-803:before { - content: '\f022'; } - -.wi-owm-night-804:before { - content: '\f086'; } - -.wi-owm-night-900:before { - content: '\f056'; } - -.wi-owm-night-902:before { - content: '\f073'; } - -.wi-owm-night-903:before { - content: '\f076'; } - -.wi-owm-night-904:before { - content: '\f072'; } - -.wi-owm-night-906:before { - content: '\f024'; } - -.wi-owm-night-957:before { - content: '\f050'; } - -.wi-wu-chanceflurries:before { - content: '\f064'; } - -.wi-wu-chancerain:before { - content: '\f019'; } - -.wi-wu-chancesleat:before { - content: '\f0b5'; } - -.wi-wu-chancesnow:before { - content: '\f01b'; } - -.wi-wu-chancetstorms:before { - content: '\f01e'; } - -.wi-wu-clear:before { - content: '\f00d'; } - -.wi-wu-cloudy:before { - content: '\f002'; } - -.wi-wu-flurries:before { - content: '\f064'; } - -.wi-wu-hazy:before { - content: '\f0b6'; } - -.wi-wu-mostlycloudy:before { - content: '\f002'; } - -.wi-wu-mostlysunny:before { - content: '\f00d'; } - -.wi-wu-partlycloudy:before { - content: '\f002'; } - -.wi-wu-partlysunny:before { - content: '\f00d'; } - -.wi-wu-rain:before { - content: '\f01a'; } - -.wi-wu-sleat:before { - content: '\f0b5'; } - -.wi-wu-snow:before { - content: '\f01b'; } - -.wi-wu-sunny:before { - content: '\f00d'; } - -.wi-wu-tstorms:before { - content: '\f01e'; } - -.wi-wu-unknown:before { - content: '\f00d'; } - /** * /* tailwind css * diff --git a/src/utils/WeatherIcon.js b/src/utils/WeatherIcon.js index 59895ec..c48a7ee 100644 --- a/src/utils/WeatherIcon.js +++ b/src/utils/WeatherIcon.js @@ -24,9 +24,9 @@ const getWeatherIcon = data => { case 'sleet': return 'sleet' case 'wind': - return `wi wi-${type === 'night' ? 'night-alt-cloudy' : 'day'}-windy` + return `wi-${type}-windy` case 'fog': - return type === 'day' ? 'wi wi-day-fog' : 'wi wi-night-fog' + return `wi-${type}-fog` case 'cloudy': return 'cloudy' case 'partly-cloudy-day': @@ -38,12 +38,12 @@ const getWeatherIcon = data => { case 'thunderstorm': return 'thunder' case 'tornado': - return 'wi wi-tornado' + return 'wi-tornado' default: - return 'wi wi-na' + return 'wi-na' } } - return 'wi wi-na' + return 'wi-na' } export default getWeatherIcon diff --git a/tailwind.config.js b/tailwind.config.js index 6f03d5c..6f64f2e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -12,6 +12,8 @@ module.exports = { light: '#F7f8f9', dark: '#181818', sun: '#E7AB4D', + react: '#2acef7', + toggle: '#ffa500', gray: { 100: '#f7fafc', 200: '#edf2f7',