Browse Source

bugfix

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

52
src/notehub/css.clj

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

Loading…
Cancel
Save