Browse Source

bugfix

master
Christian Müller 11 years ago
parent
commit
a0373fee81
  1. 120
      src/notehub/css.clj

120
src/notehub/css.clj

@ -83,8 +83,8 @@
link-visited (get-in theme [:link :visited]) link-visited (get-in theme [:link :visited])
link-hover (get-in theme [:link :hover]) link-hover (get-in theme [:link :hover])
width (px 800) width (px 800)
header-font (str "'" (or (params "header-font") "Noticia Text") "'") header-font (or (params "header-font") "Noticia Text")
text-font (str "'" (or (params "text-font") "Georgia") "'") text-font (or (params "text-font") "Georgia")
header-size-factor (Float/parseFloat (or (params "header-size") "1")) header-size-factor (Float/parseFloat (or (params "header-size") "1"))
text-size-factor (Float/parseFloat (or (params "text-size") "1")) text-size-factor (Float/parseFloat (or (params "text-size") "1"))
@ -94,9 +94,9 @@
:font-family "'Helvetica Neue','Helvetica','Arial','Lucida Grande','sans-serif'" :font-family "'Helvetica Neue','Helvetica','Arial','Lucida Grande','sans-serif'"
} }
central-element { central-element {
:margin-left "auto" :margin-left "auto"
:margin-right "auto" :margin-right "auto"
} }
thin-border { thin-border {
:border (print-str "1px solid" foreground) :border (print-str "1px solid" foreground)
}] }]
@ -123,8 +123,7 @@
:font-size (em 1) :font-size (em 1)
:background background :background background
} }
helvetica helvetica thin-border]
thin-border]
[:.landing-button, :textarea, :fieldset { :border "none" }] [:.landing-button, :textarea, :fieldset { :border "none" }]
[:.landing-button { [:.landing-button {
:box-shadow "0 2px 5px #aaa" :box-shadow "0 2px 5px #aaa"
@ -201,71 +200,56 @@
:margin (em 2) :margin (em 2)
}] }]
[:.centered { [:.centered { :text-align "center" }]
:text-align "center" [:.bottom-space { :margin-bottom (em 7) }]
}]
[:.bottom-space {
:margin-bottom (em 7)
}]
[:code, :pre { [:code, :pre {
:font-family "monospace" :font-family "monospace"
:background background-halftone :background background-halftone
:font-size (em (* 1.2 text-size-factor)) :font-size (em (* 1.2 text-size-factor))
}] }]
[:pre { [:pre {
:border-radius (px 3) :border-radius (px 3)
:padding (em 0.5) :padding (em 0.5)
:border (str "1px dotted" foreground-halftone) :border (str "1px dotted" foreground-halftone)
}] }]
["*:focus" { ["*:focus" { :outline "0px none transparent" }]
:outline "0px none transparent" (at-media {:screen true :min-width (px 1024)} [:textarea {:width width}])
[:textarea {
:border-radius (px 5)
:font-family "Courier"
:font-size (em 1)
:height (px 500)
}]
[:.hidden { :display "none" }]
[:#dashed-line {
:border-bottom (str "1px dashed" foreground-halftone)
:margin-top (em 3)
:margin-bottom (em 3)
}]
[:table {
:width "100%"
:border-collapse "collapse"
}]
[:th {
:padding (em 0.3)
:background-color background-halftone
}] }]
(at-media {:screen true :min-width (px 1024)} [:textarea {:width width}]) [:td {
:border-top (str "1px dotted" foreground-halftone)
[:textarea { :padding (em 0.3)
:border-radius (px 5) :line-height (em 2.5)
:font-family "Courier"
:font-size (em 1)
:height (px 500)
}] }]
[:.hidden { [:.middot { :padding (em 0.5) }]
:display "none"
}] [:body { :display "-webkit-flex" }]
[:#dashed-line {
:border-bottom (str "1px dashed" foreground-halftone) [:body {
:margin-top (em 3) :display "flex"
:margin-bottom (em 3) :min-height "100vh"
}] :flex-direction "column"
[:table { :-webkit-flex-direction "column"
:width "100%" }]
:border-collapse "collapse" )))
}]
[:th {
:padding (em 0.3)
:background-color background-halftone
}]
[:td {
:border-top (str "1px dotted" foreground-halftone)
:padding (em 0.3)
:line-height (em 2.5)
}]
[:.middot {
:padding (em 0.5)
}]
[:body {
:display "-webkit-flex"
}]
[:body {
:display "flex"
:min-height "100vh"
:flex-direction "column"
:-webkit-flex-direction "column"
}]
))
)

Loading…
Cancel
Save