aboutsummaryrefslogtreecommitdiffstats
path: root/src/stylesheets/application.sass
blob: 24036ef511184c0af5a339cd85d61834ae8d3b5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
$background: black
$text-color: rgb(254, 254, 234)
$box-background: rgb(105, 30, 30)
$box-border: lightgray

@mixin content-pane
  width: 724px
  height: 1024px
  margin: auto

@import "compass/typography/links/link-colors"
@import "compass/typography/links/hover-link"
@import "compass/typography/lists/bullets"

body
  background-color: $background
  color: $text-color
  font-family: Helvetica, Arial, Sans-serif
  font-size: 12pt

h1
  color: yellow
  font-size: 115%
  border-bottom: 1px solid

h2
  margin: 0
  border-bottom: 1px solid
  font-size: 110%

ul
  margin: 0

li
  +no-bullet

a
  +link-colors(#cc0, #c00, #c0c, #ccc, #cc0)
  +hover-link

strong
  color: white

#splash
  +content-pane

#content
  +content-pane
  background-image: url('/images/content_background.jpg')
  padding-bottom: 40px
  #body
    position: relative
    top: 160px
    left: 25px
    width: 674px
    height: 840px
    overflow: auto
    padding: 2px


#facts
  border: 1px dotted $text-color
  padding: 3px
  font-size: 80%
  float: right
  margin-left: 3px

.intro
  font-size: 105%
  font-weight: bolder

$sharebar-height: 40px
$button-height: $sharebar-height - 5px

#sharebar
  position: fixed
  bottom: 0
  left: 10%
  right: 10%
  height: $sharebar-height
  border-top: 1px solid lightgray
  font-size: 80%
  background-color: rgba(0, 0, 0, 0.7)

.sharebutton
  display: inline-block
  vertical-align: top
  padding-top: 6px

#facebook_button

#delicious_button
  padding-right: 3em
  .icon
    display: inline-block
    height: $button-height
  .link
    display: inline-block
    height: $button-height
    padding-top: 3px
    vertical-align: middle
    font-size: 8pt

#google_plus_button

.newsitem
  background-color: rgba(0, 0, 0, 0.4)
  border: 1px solid rgba(0, 0, 0, 0.8)
  padding-bottom: 10px
  margin-bottom: 10px