shared/src/main/scala/purecss/text/PureCss.scala
author Tomas Zeman <tzeman@volny.cz>
Thu, 14 Dec 2017 12:17:36 +0100
changeset 3 dbc25b272bdc
permissions -rw-r--r--
Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     1
/*
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     2
 * Copyright 2017 Tomas Zeman <tzeman@volny.cz>
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     3
 *
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     4
 * Licensed under the Apache License, Version 2.0 (the "License");
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     5
 * you may not use this file except in compliance with the License.
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     6
 * You may obtain a copy of the License at
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     7
 *
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     8
 *     http://www.apache.org/licenses/LICENSE-2.0
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     9
 *
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    10
 * Unless required by applicable law or agreed to in writing, software
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    11
 * distributed under the License is distributed on an "AS IS" BASIS,
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    13
 * See the License for the specific language governing permissions and
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    14
 * limitations under the License.
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    15
 */
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    16
package purecss.text
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    17
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    18
import purecss.generic.PureCssGeneric
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    19
dbc25b272bdc Foundation classes for text / jsdom backends. Base definitions (of pure-* classes)
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    20
object PureCss extends PureCssGeneric(scalatags.Text)