1
0
Fork 0
forked from wezm/wezm.net

Compare commits

..

2 commits

1031 changed files with 357 additions and 11248 deletions

View file

@ -3,7 +3,6 @@ output/fonts/*
output/about/
output/articles/
output/css/screen.css
output/css/rouge.css
output/feed/
output/index.html
output/personal/

1
.ruby-version Normal file
View file

@ -0,0 +1 @@
2.4.1

View file

@ -4,7 +4,7 @@ source 'https://rubygems.org'
gem 'rake'
gem 'mime-types'
gem 'nanoc', '~> 4.0'
gem 'nanoc', '~> 3.0'
gem 'bitly'
gem 'haml'
gem 'sass'
@ -15,12 +15,9 @@ gem 'builder'
gem 'fssm'
gem 'systemu'
gem 'listen'
gem 'guard-nanoc'
gem 'adsf'
gem 'rouge'
group :development do
gem 'guard-nanoc'
if RbConfig::CONFIG['target_os'] =~ /(?i-mx:bsd|dragonfly)/
gem 'rb-kqueue', '>= 0.2'
end
if RbConfig::CONFIG['target_os'] =~ /(?i-mx:bsd|dragonfly)/
gem 'rb-kqueue', '>= 0.2'
end

111
Gemfile.lock Normal file
View file

@ -0,0 +1,111 @@
GEM
remote: https://rubygems.org/
specs:
adsf (1.4.0)
rack (>= 1.0.0, < 3.0.0)
bitly (1.1.0)
httparty (>= 0.7.6)
multi_json (~> 1.3)
oauth2 (>= 0.5.0, < 2.0)
builder (3.2.3)
coderay (1.1.2)
colored (1.2)
cri (2.9.1)
colored (~> 1.2)
faraday (0.12.2)
multipart-post (>= 1.2, < 3)
ffi (1.9.18)
formatador (0.2.5)
fssm (0.2.10)
guard (2.14.1)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
lumberjack (~> 1.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.9.12)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-nanoc (1.0.3)
guard (~> 2.8)
nanoc (~> 3.6)
haml (5.0.3)
temple (>= 0.8.0)
tilt
httparty (0.15.6)
multi_xml (>= 0.5.2)
jwt (1.5.6)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
lumberjack (1.0.12)
method_source (0.9.0)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
mini_portile2 (2.3.0)
multi_json (1.12.2)
multi_xml (0.6.0)
multipart-post (2.0.0)
nanoc (3.8.0)
cri (~> 2.3)
nenv (0.3.0)
nokogiri (1.8.1)
mini_portile2 (~> 2.3.0)
notiffany (0.1.1)
nenv (~> 0.1)
shellany (~> 0.0)
oauth2 (1.4.0)
faraday (>= 0.8, < 0.13)
jwt (~> 1.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
pry (0.11.1)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rack (2.0.3)
rake (12.1.0)
rb-fsevent (0.10.2)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rb-kqueue (0.2.5)
ffi (>= 0.5.0)
rdiscount (2.2.0.1)
ruby_dep (1.5.0)
rubypants (0.6.0)
sass (3.5.1)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
shellany (0.0.1)
systemu (2.6.5)
temple (0.8.0)
thor (0.20.0)
tilt (2.0.8)
PLATFORMS
ruby
DEPENDENCIES
adsf
bitly
builder
fssm
guard-nanoc
haml
listen
mime-types
nanoc (~> 3.0)
nokogiri
rake
rb-kqueue (>= 0.2)
rdiscount
rubypants
sass
systemu
BUNDLED WITH
1.16.0

View file

@ -1,23 +0,0 @@
wezm.net
========
My website. Corrections for typos and other minor errors welcome via issue or
pull request.
v2
--
This is the current version of the website, built with [Zola].
v1
--
This is the original version of the website containing posts from 20082019. It
is built with [Nanoc].
---
Copyright © 2003 2022 Wesley Moore. All rights reserved
[Nanoc]: https://nanoc.ws/
[Zola]: https://www.getzola.org/

12
README.mkdn Normal file
View file

@ -0,0 +1,12 @@
WezM.net
========
Site Structure
--------------
/articles
/technical
/category
/personal
/category
/about

1
Rakefile Normal file
View file

@ -0,0 +1 @@
require 'nanoc3/tasks'

View file

@ -21,7 +21,6 @@ compile %r(/\d{4}/.*) do
layout 'article'
layout 'default'
filter :rubypants
filter :colorize_syntax, default_colorizer: :rouge
end
compile %r(/about/.*) do
@ -42,13 +41,8 @@ compile %r{^/(?:screen|mobile)/$} do
filter :sass
end
compile %r{/rouge/$} do
filter :erb
end
compile '*' do
filter :rdiscount
layout 'page'
layout 'default'
filter :rubypants
end
@ -70,7 +64,7 @@ end
# (path.dirname + 'articles.json').to_s
# end
route %r{^/(?:screen|mobile|rouge)/$} do
route %r{^/(?:screen|mobile)/$} do
File.join("", "css", File.basename(item.identifier) + ".css")
end

27
TODO Normal file
View file

@ -0,0 +1,27 @@
Now
---
* Setup monothumb on server
* Exclude photo and photos.xml from deploy:rsync
Deployment
----------
* Move Wordpress to old. and add robots.txt
Later
-----
* Add monothumb to GitHub
* Revise About page content
* Get proper lens specs for About page
* Fully convert to HTML5
* Microdata on About/Contact pages
* Add favicon
* Add weights to sitemap
Future
------
* Make it possible to purchase the HTML
* Make a Wordpress theme out of the site

View file

@ -24,13 +24,11 @@ enable_output_diff: false
# hashes; each array element represents a single data source. By default,
# there is only a single data source that reads data from the “content/” and
# “layout/” directories in the site directory.
string_pattern_type: legacy
data_sources:
-
# The type is the identifier of the data source. By default, this will be
# `filesystem_unified`.
type: filesystem_unified
identifier_type: legacy
# The path where items should be mounted (comparable to mount points in
# Unix-like systems). This is “/” by default, meaning that items will have
@ -43,11 +41,11 @@ data_sources:
# same as the items root, but applies to layouts rather than items.
layouts_root: /
base_url: 'https://www.wezm.net'
base_url: 'http://www.wezm.net'
deploy:
default:
kind: rsync
dst: "hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net"
dst: "eforce.binarytrance.com:/usr/local/www/www.wezm.net"
#options: [ '-rlpgoDvz', '--delete', '--exclude=".svn"' ]
options: [ '-avz' ]
options: [ '-avz', '--omit-dir-times', '--delete', '--exclude=".svn"' ]

View file

@ -18,12 +18,13 @@ Find me on the Internet in one of these places:
<ul>
<li>Email <a href="mailto:wes@wezm.net">wes@wezm.net</a></li>
<li><a href="https://binarytrance.com/">Binary Trance Software</a> My app development company</li>
<li><a href="http://bitcannon.net/">Bit Cannon</a> My other blog</li>
<li><a href="http://readrust.net/">Read Rust</a>
Aggregator of content related to the <a href="https://www.rust-lang.org/">Rust</a> programming language</li>
<li><a href="http://readrust.net/">Read Rust</a>
Aggregator of content related to the <a href="https://www.rust-lang.org/">Rust</a> programming language</li>
<li><a href="http://www.flickr.com/photos/wezm/">Flickr</a></li>
<li><a href="https://github.com/wezm">GitHub</a></li>
<li><a href="https://mastodon.decentralised.social/@wezm">Mastodon/Fediverse</a></li>
<li><a href="https://mastodon.social/@wezm">Mastodon</a></li>
<li><a href="https://patreon.com/wezm">Patreon</a></li>
<li><a href="http://stackoverflow.com/users/38820/wes">Stack Overflow</a></li>
<li><a href="https://twitter.com/wezm">Twitter</a></li>

View file

@ -6,26 +6,26 @@ A friend asked the following today, the reply was big enough I decided to post i
>
> Has it changed your life? Has the battery life been crappy for you? Talk time OK?
Its definitely the best phone I've had. Part of that is due to the tight integration with Mac OS X, which obviously very few companies were going to pull off. As a device it's brilliant to use and full of functionality. I'm loving the apps and decent browser. The WiFi is really nice at home. The iPod part obviously works as well and better than any prior iPod.
Its definitely the best phone I've had. Part of that is due to the tight integration with Mac OS X, which obviously very few companies were going to pull off. As a device its brilliant to use and full of functionality. I'm loving the apps and decent browser. The WiFi is really nice at home. The iPod part obviously works as well and better than any prior iPod.
The on screen keyboard is pretty much as described. You have to give it time to get the hang of it and you have to trust it. If you're typing a word that would be in the English dictionary you're best to keep on typing even if the word is way off. By the time you get to pressing space it's usually selected the right word, which is selected automatically upon space. Two irritations with typing though. Its less likely to get shorter word right, particularly when there's multiple valid options. There's no way that I'm aware of to get a list of possibilities and choose the one you want. Of course being a small word means it's not hard to fix and if you type it correctly in the first place then it isn't a problem at all. The other minor annoyance is when you get to the last word in a sentence that is mis-typed with a correct suggestion it appears the only way to accept it is to press space (and then delete the space) or grab a full stop.
The on screen keyboard is pretty much as described. You have to give it time to get the hang of it and you have to trust it. If you're typing a word that would be in the English dictionary you're best to keep on typing even if the word is way off. By the time you get to pressing space its usually selected the right word, which is selected automatically upon space. Two irritations with typing though. Its less likely to get shorter word right, particularly when there's multiple valid options. There's no way that I'm aware of to get a list of possibilities and choose the one you want. Of course being a small word means its not hard to fix and if you type it correctly in the first place then it isn't a problem at all. The other minor annoyance is when you get to the last word in a sentence that is mis-typed with a correct suggestion it appears the only way to accept it is to press space (and then delete the space) or grab a full stop.
<!--more-->
<a href="/images/2008/07/img_0012.png" class="alignright"><img src="/images/2008/07/img_0012-200x300.png" alt="Byline" title="img_0012" width="200" height="300" class="alignnone size-medium wp-image-48" /></a>I haven't missed MMS at all, especially with a decent email client built in that can talk to Gmail via IMAP and send photos to Flickr that way.
<a href="/images/2008/07/img_0012.png" class="alignright"><img src="/images/2008/07/img_0012-200x300.png" alt="Byline" title="img_0012" width="200" height="300" class="alignnone size-medium wp-image-48" /></a>I haven't missed MMS at all, especially with a decent email client built in that can talk to Gmail via IMAP and send photos to flickr that way.
I have missed Todo functionality. I have no idea why Apple have not got this syncing. The support is there in iSync and todos sync with my old phone (Nokia 6280) just fine. I'm hoping that it's one of these things that will make it eventually. There's two reasons I miss todo, one to track things to be done, the other is for reminders for things that don't have a duration (which can be put in as calendar entries). There is no way to do reminders without a duration at the moment. Having said that the calendar functionality is comprehensive. It supports multiple calendars, full editing, meeting acceptance and basically anything you can do on the desktop.
I have missed Todo functionality. I have no idea why Apple have not got this syncing. The support is there in iSync and todos sync with my old phone (Nokia 6280) just fine. I'm hoping that its one of these things that will make it eventually. There's two reasons I miss todo, one to track things to be done, the other is for reminders for things that don't have a duration (which can be put in as calendar entries). There is no way to do reminders without a duration at the moment. Having said that the calendar functionality is comprehensive. It supports multiple calendars, full editing, meeting acceptance and basically anything you can do on the desktop.
<a href="/images/2008/07/img_0019.png" class="alignleft clear"><img src="/images/2008/07/img_0019-200x300.png" alt="Twinkle" title="img_0019" width="200" height="300" class="alignnone size-medium wp-image-55" /></a>Another annoyance surrounds SMS. When on silent you only get a single vibration on new message, which is easily missed. My old phone did three, which was better. Also when you get an SMS my old phone would show an envelope on the black and white standby screen. With the iPhone you have to wake it up to see if you've got a message after the display goes back off.
The AppStore is great, some of the apps are very well done. I'm really liking <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284946773&mt=8">Byline</a>, <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284967867&mt=8">Twinkle</a>, <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284919489&mt=8">Exposure</a> and <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284825922&mt=8">MoPhoTo</a>. I'm not much of a Facebook user but the <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284882215&mt=8">Facebook app</a> is very well done. It's just the core parts of Facebook without all the crap. Of those five, three are free, one is free by ad-supported (with a pay for version available) and the other AU$12.99. I think that's a pretty good spread for some top quality apps. Some screenshots of these apps are scattered below.
The AppStore is great, some of the apps are very well done. I'm really liking <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284946773&mt=8">Byline</a>, <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284967867&mt=8">Twinkle</a>, <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284919489&mt=8">Exposure</a> and <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284825922&mt=8">MoPhoTo</a>. I'm not much of a Facebook user but the <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284882215&mt=8">Facebook app</a> is very well done. It just the core parts of Facebook without all the crap. Of those five, three are free, one is free by ad-supported (with a pay for version available) and the other AU$12.99. I think that's a pretty good spread for some top quality apps. Some screenshots of these apps are scattered below.
<a href="/images/2008/07/img_0016.png" class="alignright clear"><img src="/images/2008/07/img_0016-200x300.png" alt="Exposure" title="img_0016" width="200" height="300" class="alignnone size-medium wp-image-52" /></a>Battery life is nothing brilliant as has been reported elsewhere. You'd probably want to change it every day. Today I watched a video podcast on the way to work, send a couple of SMSs during the day, added a calendar event, got a call from Steve, called the dentist, listened to music, read in Google Reader via the Byline app, read and updated Twitter via the Twinkle app and used the timer to cook dinner and it's showing half battery. It was off the changer all last night too.
<a href="/images/2008/07/img_0016.png" class="alignright clear"><img src="/images/2008/07/img_0016-200x300.png" alt="Exposure" title="img_0016" width="200" height="300" class="alignnone size-medium wp-image-52" /></a>Battery life is nothing brilliant as has been reported elsewhere. You'd probably want to change it every day. Today I watched a video podcast on the way to work, send a couple of SMSs during the day, added a calendar event, got a call from Steve, called the dentist, listened to music, read in Google Reader via the Byline app, read and updated Twitter via the Twinkle app and used the timer to cook dinner and its showing half battery. It was off the changer all last night too.
A complaint of the old one was that the ringer and message volume was very low and easily missed. I've it plenty loud enough and it's only on about three quarters. Speaking on the phone the volume is good, although I haven't tried extreme environments like a club.
A complaint of the old one was that the ringer and message volume was very low and easily missed. I've it plenty loud enough and its only on about three quarters. Speaking on the phone the volume is good, although I haven't tried extreme environments like a club.
One of the best built-in apps on the whole phone is maps. Whenever you want to find something, or get the details for a business, get directions, just bring up Maps and it will sort it out. Its as good as, if not better than Google Maps on the desktop. It has the same three views too: Maps, Satellite and Hybrid. The location awareness is great and there's some basic uses of it in the apps so far, hopefully more creative uses come out. One interesting one is an app called Exposure that is a Flickr client with a 'near me' function. It shows photos near your current location. Doing so at home brings ups photos of St Kilda Rd, the fountain in the gardens out the front (Pictured above).
One of the best built-in apps on the whole phone is maps. Whenever you want to find something, or get the details for a business, get directions, just bring up Maps and it will sort it out. Its as good as, if not better than Google Maps on the desktop. It has the same three views too: Maps, Satellite and Hybrid. The location awareness is great and there's some basic uses of it in the apps so far, hopefully more creative uses come out. One interesting one is an app called Exposure that is a flickr client with a 'near me' function. It shows photos near your current location. Doing so at home brings ups photos of St Kilda Rd, the fountain in the gardens out the front (Pictured above).
Maybe I'm easily sold on such things but the UI is truly beautiful and being solely finger driven is revolutionary (on a phone). I'm a happy customer.
Maybe I'm easily sold on such things but the UI is truly beautiful and being solely finger driven is revolutionarily (on a phone). I'm a happy customer.
<a href="/images/2008/07/img_0017.png" class="alignleft clear"><img src="/images/2008/07/img_0017-200x300.png" alt="Facebook" title="img_0017" width="200" height="300" class="alignnone size-medium wp-image-53" /></a><a href="/images/2008/07/img_0018.png" class="alignright"><img src="/images/2008/07/img_0018-200x300.png" alt="MoPhoTo" title="img_0018" width="200" height="300" class="alignnone size-medium wp-image-54" /></a>
<div style="clear: both;">&nbsp;</div>
<div style="clear: both;">&nbsp;</div>

View file

@ -1,37 +1,50 @@
Binary Trance Software
----------------------
Through my app development company [Binary Trance Software][bt] I've
built the following apps:
* [SymbolMate][symbolmate] -- Quickly find and copy symbols and Emoji
[bt]: https://binarytrance.com/
[symbolmate]: https://binarytrance.com/apps/symbolmate
Websites
--------
Other websites I maintain are:
A couple of other websites I maintain are:
* [Read Rust][readrust] -- an aggregator of news about the [Rust programming
language][Rust].
* [Desktop Institute][desktop-institute] -- Documenting the search for a
desktop environment that combines the, "it just works", nature of [GNOME] with
the window management of [Awesome].
* [Bit Cannon][bitcannon] -- a blog that I designed and built with
[Hugo] as a bit of an experiment, the exact nature of which is still
* [Bit Cannon][bitcannon] -- a new blog that I designed and built with
[Hugo][hugo] as a bit of an experiment, the exact nature of which is still
evolving.
* [Linked List][linkedlist] -- "a semi-organized collection of knowledge
that I have accumulated.", created as a reference for myself but also published
publicly in the hope it may be useful to others as well. The code ([pkb])
publically in the hope it may be useful to others as well. The code ([pkb])
is open source.
[Awesome]: https://awesomewm.org/
[bitcannon]: https://bitcannon.net/
[desktop-institute]: https://desktop.institute/
[GNOME]: https://www.gnome.org/
[Hugo]: https://gohugo.io/
[readrust]: https://readrust.net/
[Rust]: https://www.rust-lang.org/
[bitcannon]: http://bitcannon.net/
[hugo]: http://gohugo.io/
BSD CI
------
[BSD CI] (currently in development) aims to provide a simple way for software
projects to build and test on [BSD operating systems][run-bsd].
[BSD CI]: http://bsd-ci.com/
[run-bsd]: http://runbsd.info/
Open Source Projects
--------------------
I have a collection of open-source software on [GitHub] and [Sourcehut]. Some of the
I have a collection of open-source software on [GitHub][github]. Some of the
more noteworthy projects are listed below.
[GitHub]: https://github.com/wezm
[Sourcehut]: https://git.sr.ht/~wezm/
[github]: http://github.com/wezm
### Read Rust
@ -49,7 +62,7 @@ to quickly publish snippets of knowledge. It powers
[linkedlist.org][linkedlist], which is my instance of pkb.
[pkb]: https://github.com/wezm/pkb
[Rails]: https://rubyonrails.org/
[Rails]: http://rubyonrails.org/
[linkedlist]: https://linkedlist.org/
### titlecase
@ -73,6 +86,17 @@ Compiler][ragel] in the hope that it will help ensure fast and correct parsing.
[mustache]: http://mustache.github.com/
[ragel]: http://www.complang.org/ragel/
### node-genx
[node-genx] is a [node.js][node] binding to the [Genx][genx] XML generation
library. It allows fast and correct XML generation from the Javascript based
node.js environment. Available for easy install via [npm].
[node-genx]: https://github.com/wezm/node-genx
[node]: http://nodejs.org/
[genx]: http://www.tbray.org/ongoing/When/200x/2004/02/20/GenxStatus
[npm]: http://npmjs.org/
### Weather Station
I previously had a weather station at my home for keeping track of the local
@ -94,10 +118,3 @@ See the following posts for more information on the weather station:
* [Weather Station Install](/personal/2010/09/weather-station/)
* [Weather Station Software Update](/technical/2010/09/weather-station-software/)
Old Apps
--------
* [SymbolMate][symbolmate] -- Quickly find and copy symbols and Emoji
[symbolmate]: https://binarytrance.com/apps/symbolmate

3
content/robots.txt Normal file
View file

@ -0,0 +1,3 @@
User-Agent: *
Disallow:
Sitemap: <%= @site.config[:base_url] %>/sitemap.xml

View file

@ -1,6 +1,4 @@
$ans-serif: Carlito, Calibri, sans-serif
$header-colour: #242424
$link-color: #36454F
body
font-family: $ans-serif
@ -78,7 +76,7 @@ a
text-decoration: underline
&:link, &:visited
color: $link-color
color: #36454F
h1 a
text-decoration: none
@ -128,10 +126,6 @@ img.cover-photo
display: block
margin: 0 auto
img.lobsters
position: relative
top: 2px
video
max-width: 100%
@ -140,7 +134,7 @@ body > header
font-size: 18px
color: white
padding: 0.5em
background-color: $header-colour
background: #1C1C1C
a
-webkit-transition: border-bottom-color 500ms ease-out
@ -153,16 +147,16 @@ body > header
&:hover
border-bottom-color: rgba(255, 255, 255, 1.0)
span
display: none
#menu
float: right
padding-right: 0.25em
li
font-size: 14px
font-weight: bold
text-transform: uppercase
letter-spacing: 0.5px
font-size: inherit
#content
@ -174,62 +168,18 @@ body > header
footer
color: #999
border-top: 1px solid #999
margin: 3em 20px 2em
margin: 20px
clear: both
.copyright
font-family: $ans-serif
font-size: 14px
margin-top: 1em
padding-top: 1em
display: block
.align-top
vertical-align: top
.with-border
border: 1px solid #D8D8D8
.no-border
border: none
text-decoration: none
.socials
margin-top: 1em
float: right
.social-icon
margin: 0 0.5em
.social-icon-wide
margin: 0 0.6em
.action-button
background-color: $link-color
border-radius: 0.25em
border: 2px solid $link-color
color: white
display: inline-block
font-size: 12px
font-weight: bold
margin: 0.75em 0
padding: 0.5em 1em
text-decoration: none
text-transform: uppercase
.action-button-ghost
background-color: initial
color: $link-color
.action-button-ghost:hover
background-color: $link-color
color: white
.archive-banner
padding: 0.5em 0.5em
background-color: #fffff1
font-weight: 400
border-bottom: 1px solid #eae4b9
font-size: smaller
.home
h1 > a:first-child
@ -248,10 +198,6 @@ footer
max-width: 1200px
min-height: 85vh
.cli-tools
h3
margin-top: 4em
#posts
width: 100%
@ -357,12 +303,17 @@ body.articles #content nav
#respond
margin: 3em 0
margin-top: 10px
padding: 10px
background-color: #ddd
clear: both
h2
margin-top: 0
.short
font-size: smaller
#content
.published
font-family: $ans-serif
@ -488,10 +439,6 @@ table
.text-right
text-align: right
.heading-icon
height: 20px
margin-right: 0.25em
// Weather
body.weather
@ -574,10 +521,13 @@ body.weather
body
font-size: 20px
body > header
text-align: center
body > header span
float: right
display: inline
cursor: pointer
#menu
display: none
float: none
padding: 0.5em 0 0 0
line-height: 2

Some files were not shown because too many files have changed in this diff Show more