master
E. Almqvist 3 years ago
parent 499a4e32cc
commit ee0365d4a9
  1. 2
      src/app.rb
  2. 2
      src/misc/subtitles.txt
  3. 2
      src/views/layout.slim
  4. 17
      src/views/stylesheets/style.sass

@ -8,7 +8,7 @@ require "sassc"
def get_random_subtitle def get_random_subtitle
subtitles = File.readlines "misc/subtitles.txt" subtitles = File.readlines "misc/subtitles.txt"
subtitles.sample subtitles.sample.chomp
end end

@ -3,5 +3,5 @@ No such place like 127.0.0.1!
Fourty-two? What do you mean? Tell me! Fourty-two? What do you mean? Tell me!
I use Arch btw I use Arch btw
They glow in the dark... They glow in the dark...
"What sort of executable format do you intend to support for apps running under your OS?" What sort of executable format do you intend to support for apps running under your OS?
I would just like to interject for a moment... I would just like to interject for a moment...

@ -10,7 +10,7 @@ html lang="en"
div div
div#logo_container div#logo_container
h1 = "The Auction House" h1 = "The Auction House"
h2 = get_random_subtitle h2 = "\"#{get_random_subtitle}\""
nav nav
ul ul
li li

@ -1,13 +1,13 @@
@import "fonts" @import "fonts"
$font_stack: "Space Mono", monospace $font_stack: "Space Mono", monospace
$bg_clr: #f2f5f7 $bg_clr: #272a34
// #e7ecef $bg_alt_clr: #232730
$bg_alt_clr: #fffcf7 $fg_clr: #fff
$fg_clr: #262526 $fg_alt_clr: #eee
$fg_alt_clr: #fff
$shadow_clr: #ccc $shadow_clr: #4b5263
$special_btn_clr: #4776C1 $special_btn_clr: #4776C1
@ -17,6 +17,7 @@ $special_btn_clr: #4776C1
padding: 0 padding: 0
font-family: $font_stack font-family: $font_stack
font-size: 16px font-size: 16px
color: $fg_clr
html html
background-color: $bg_clr background-color: $bg_clr
@ -40,14 +41,14 @@ body
margin: 0 margin: 0
h1 h1
margin: 0 margin: 0
opacity: .5 opacity: .8
font-size: 2rem font-size: 2rem
font-weight: bold font-weight: bold
h2 h2
padding-left: 6px padding-left: 6px
margin: 0 margin: 0
opacity: .28 opacity: .5
font-size: .8rem font-size: .8rem
font-style: italic font-style: italic
font-weight: normal font-weight: normal

Loading…
Cancel
Save