aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/reading/component/index/style/Books.scala
blob: 2c0dfc05fb6007057c97b1113eda5016fd1cb5cc (plain)
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
package reading.component.index.style

import scalacss.Defaults._

import reading.component.style.Col

object Books extends StyleSheet.Inline {
  import dsl._

  val books = style(
  )

  val book = style(
    marginBottom(30.px)
  )

  val title = style(
    fontWeight.bold,
    marginBottom(10.px),
    color(Col.congoBrown)
  )

  val author = style(
  )

  val genres = style(
  )

  val themes = style(
  )
}