-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced font awesome with weather icons. Added moon phases. These don't yet do anything other then look cool but will be involved in the upcoming weather 2.0 revamp.
- Loading branch information
1 parent
592013a
commit aaed031
Showing
12 changed files
with
500 additions
and
35 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
<meta http-equiv="Content-type" content="text/html;charset=utf-8"> | ||
<link rel="icon" href="evolved.ico" type="images/x-icon"> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/buefy.min.css"> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"> | ||
<link rel="stylesheet" type="text/css" href="lib/weather-icons.min.css"> | ||
<link rel="stylesheet" type="text/css" href="lib/weather-icons-wind.min.css"> | ||
<link rel="stylesheet" type="text/css" href="evolved.css"> | ||
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> | ||
|
@@ -25,10 +26,11 @@ | |
<div id="topBar" class="topBar"> | ||
<span class="planet">{{ race.species | planet }}</span> | ||
<span class="calendar" v-show="city.calendar.day"> | ||
<b-tooltip :label="moon()" position="is-bottom" size="is-small" multilined animated><i id="moon" class="moon wi"></i></b-tooltip> | ||
<span class="year">Year <span class="has-text-warning">{{ city.calendar.year }}</span></span> | ||
<span class="day">Day <span class="has-text-warning">{{ city.calendar.day }}</span></span> | ||
<b-tooltip :label="weather()" position="is-bottom" size="is-small" multilined animated><i id="weather" class="fas"></i></b-tooltip> | ||
<b-tooltip :label="temp()" position="is-bottom" size="is-small" multilined animated><i id="temp" class="temp fas"></i></b-tooltip> | ||
<b-tooltip :label="weather()" position="is-bottom" size="is-small" multilined animated><i id="weather" class="weather wi"></i></b-tooltip> | ||
<b-tooltip :label="temp()" position="is-bottom" size="is-small" multilined animated><i id="temp" class="temp wi"></i></b-tooltip> | ||
</span> | ||
<span class="version">v0.1.0</span> | ||
</div> | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters