aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/reading/component/index/style/FiltersMenu.scala
blob: 3fcc363bf68f02a6bcca83805b18e075e07e4b58 (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
package reading.component.index.style

import scalacss.Defaults._

import reading.component.style.Col

object FiltersMenu extends StyleSheet.Inline {
  import dsl._

  val groups = style(
    width(280.px)
  )

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

  val groupTitle = style(
    color(Col.congoBrown),
    fontWeight.bold,
    textTransform.uppercase,
    padding(10.px, 30.px, 15.px)
  )

  val filter = style(
    padding(10.px, 30.px)
  )
}