All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.woojiahao.style.elements.code.CodeBlock.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.style.elements.code

import com.github.woojiahao.style.css.cssSelector
import com.github.woojiahao.style.utility.Box
import com.github.woojiahao.style.utility.px

class CodeBlock : Code("pre") {
  init {
    padding = Box(10.0.px)
  }

  override fun toCss(): String {
    css += cssSelector("pre > code") {
      attributes {
        "font-family" to fontFamily
      }
    }

    css += cssSelector("pre") {
      attributes {
        "white-space" to "pre-wrap"
      }
    }

    return super.toCss()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy