Annotation of kupu/common/kupucontentstyles.css, revision 1.1

1.1     ! dwinter     1: /*****************************************************************************
        !             2:  *
        !             3:  * Kupu content styles
        !             4:  *
        !             5:  * Copyright (c) 2003-2005 Kupu Contributors. See CREDITS.txt
        !             6:  *
        !             7:  * Instead of customizing this file, it is recommended to add your own
        !             8:  * CSS file.  Feel free to use whole or parts of this for your own
        !             9:  * designs, but give credit where credit is due.
        !            10:  *
        !            11:  *****************************************************************************/
        !            12: 
        !            13: /* $Id: kupucontentstyles.css 9984 2005-03-21 14:29:21Z yuppie $ */
        !            14: 
        !            15: /* this is an example CSS that defines styles for all classes set by kupu. of
        !            16:    course customizations can include completely different styles, and also for
        !            17:    different elements (changeable or not) */
        !            18: 
        !            19: .image-left {
        !            20:    float: left;
        !            21:    clear: both;
        !            22: }
        !            23: 
        !            24: .image-inline {
        !            25:    float: none;
        !            26: }
        !            27: 
        !            28: .image-right {
        !            29:    float: right;
        !            30:    clear: both;
        !            31: }
        !            32: 
        !            33: table {
        !            34:     border-width: 0px;
        !            35:     padding: 3px;
        !            36: }
        !            37: 
        !            38: table.plain td {
        !            39:     border-width: 1px;
        !            40:     border-style: solid;
        !            41:     border-color: black;
        !            42: }
        !            43: 
        !            44: table.listing {
        !            45:     border-width: 0px;
        !            46: }
        !            47: 
        !            48: table.listing td {
        !            49:     border-style: solid;
        !            50:     border-width: 1px;
        !            51:     border-color: black;
        !            52: }
        !            53: 
        !            54: table.listing th {
        !            55:     border-style: solid;
        !            56:     border-width: 1px;
        !            57:     border-color: black;
        !            58:     background-color: gray;
        !            59:     color: white;
        !            60: }
        !            61: 
        !            62: table.grid {
        !            63:     border-width: 0px;
        !            64: }
        !            65: 
        !            66: table.grid td {
        !            67:     border-style: solid;
        !            68:     border-width: 1px;
        !            69:     border-color: black;
        !            70: }
        !            71: 
        !            72: table.grid th {
        !            73:     border-style: solid;
        !            74:     border-width: 1px;
        !            75:     border-color: black;
        !            76: }
        !            77: 
        !            78: table.data {
        !            79:     border-style: solid;
        !            80:     border-width: 1px;
        !            81:     border-color: black;
        !            82: }
        !            83: 
        !            84: table.data td {
        !            85:     border-style: solid;
        !            86:     border-width: 1px;
        !            87:     border-color: gray;
        !            88: }
        !            89: 
        !            90: table.data th {
        !            91:     border-style: solid;
        !            92:     border-width: 1px;
        !            93:     border-color: gray;
        !            94: }
        !            95: 
        !            96: .repeatable {
        !            97:     background-color: pink;
        !            98: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>