/*
GNU GENERAL LICENSE
Copyright (C) 2006 The Lobo Project. Copyright (C) 2014 - 2017 Lobo Evolution
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
verion 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General License for more details.
You should have received a copy of the GNU General Public
along with this program. If not, see <http://www.gnu.org/licenses/>.
Contact info: lobochief@users.sourceforge.net; ivan.difrancesco@yahoo.it
*/
package org.lobobrowser.html.style;
/**
* The Class CSSValuesProperties.
*/
public interface CSSValuesProperties {
/** The Constant ABSOLUTE. */
String ABSOLUTE = "absolute";
/** The Constant AUTO. */
String AUTO = "auto";
String BLINK = "blink";
/** The Constant BLOCK. */
String BLOCK = "block";
/** The Constant BOLD. */
String BOLD = "bold";
/** The Constant BOLDER. */
String BOLDER = "bolder";
/** The Constant BOTTOM. */
String BOTTOM = "bottom";
/** The Constant CAPITALIZE. */
String CAPITALIZE = "capitalize";
/** The Constant CAPTION. */
String CAPTION = "caption";
/** The Constant CENTER. */
String CENTER = "center";
/** The Constant CIRCLE. */
String CIRCLE = "circle";
/** The Constant COLLAPSE. */
String COLLAPSE = "collapse";
/** The Constant CROSSHAIR. */
String CROSSHAIR = "crosshair";
/** The Constant DASHED. */
String DASHED = "dashed";
/** The Constant DECIMAL. */
String DECIMAL = "decimal";
/** The Constant DECIMAL_LEADING_ZERO. */
String DECIMAL_LEADING_ZERO = "decimal-leading-zero";
String DEFAULT = "default";
/** The Constant DISC. */
String DISC = "dis";
/** The Constant DOTTED. */
String DOTTED = "dotted";
/** The Constant DOUBLE. */
String DOUBLE = "double";
String FIXED = "fixed";
/** The Constant GROOVE. */
String GROOVE = "groove";
/** The Constant HIDDEN. */
String HIDDEN = "hidden";
/** The Constant ICON. */
String ICON = "icon";
/** The Constant INHERIT. */
String INHERIT = "inherit";
/** The Constant INITIAL. */
String INITIAL = "initial";
/** The Constant INLINE. */
String INLINE = "inline";
/** The Constant INLINE_BLOCK. */
String INLINE_BLOCK = "inline-block";
/** The Constant INSIDE. */
String INSIDE = "inside";
/** The Constant INSET. */
String INSET = "inset";
/** The Constant ITALIC. */
String ITALIC = "italic";
/** The Constant LARGE. */
String LARGE = "large";
/** The Constant LARGER. */
String LARGER = "larger";
/** The Constant LEFT. */
String LEFT = "left";
/** The Constant LIGHTER. */
String LIGHTER = "lighter";
/** The Constant LINE_THROUGH. */
String LINE_THROUGH = "line-through";
/** The Constant LIST_ITEM. */
String LIST_ITEM = "list-item";
/** The Constant LOWERCASE. */
String LOWERCASE = "lowercase";
/** The Constant LOWER_ALPHA. */
String LOWER_ALPHA = "lower-alpha";
/** The Constant LOWER_LATIN. */
String LOWER_LATIN = "lower-latin";
/** The Constant LOWER_ROMAN. */
String LOWER_ROMAN = "lower-roman";
/** The Constant MEDIUM. */
String MEDIUM = "medium";
/** The Constant MENU. */
String MENU = "menu";
/** The Constant MESSAGE_BOX. */
String MESSAGE_BOX = "message-box";
/** The Constant MOVE. */
String MOVE = "move";
/** The Constant NONE. */
String NONE = "none";
/** The Constant NORMAL. */
String NORMAL = "normal";
/** The Constant NOWRAP. */
String NOWRAP = "nowrap";
/** The Constant OBLIQUE. */
String OBLIQUE = "oblique";
/** The Constant OUTSIDE. */
String OUTSIDE = "outside";
/** The Constant OUTSET. */
String OUTSET = "outset";
/** The Constant OVERLINE. */
String OVERLINE = "overline";
/** The Constant UNDERLINE. */
String UNDERLINE = "underline";
String UPPERCASE = "uppercase";
/** The Constant UPPER_ALPHA. */
String UPPER_ALPHA = "upper-alpha";
/** The Constant UPPER_LATIN. */
String UPPER_LATIN = "upper-latin";
/** The Constant UPPER_ROMAN. */
String UPPER_ROMAN = "upper-roman";
/** The Constant POINTER. */
String POINTER = "pointer";
/** The Constant PRE. */
String PRE = "pre";
/** The Constant RELATIVE. */
String RELATIVE = "relative";
/** The Constant REPEAT. */
String REPEAT = "repeat";
/** The Constant REPEAT_X. */
String REPEAT_X = "repeat-x";
/** The Constant REPEAT_Y. */
String REPEAT_Y = "repeat-y";
/** The Constant REPEAT_NO. */
String REPEAT_NO = "no-repeat";
/** The Constant RIDGE. */
String RIDGE = "ridge";
/** The Constant SCROLL. */
String SCROLL = "scroll";
/** The Constant RIGHT. */
String RIGHT = "right";
/** The Constant SMALL. */
String SMALL = "small";
/** The Constant SMALLER. */
String SMALLER = "smaller";
/** The Constant SMALL_CAPS. */
String SMALL_CAPS = "small-caps";
/** The Constant SMALL_CAPTION. */
String SMALL_CAPTION = "small-caption";
/** The Constant SOLID. */
String SOLID = "solid";
/** The Constant SQUARE. */
String SQUARE = "square";
/** The Constant STATIC. */
String STATIC = "static";
/** The Constant STATUS_BAR. */
String STATUS_BAR = "status-bar";
/** The Constant TABLE. */
String TABLE = "table";
/** The Constant TABLE_ROW. */
String TABLE_ROW = "table-row";
/** The Constant TABLE_CELL. */
String TABLE_CELL = "table-cell";
/** The Constant TEXT. */
String TEXT = "text";
/** The Constant TOP. */
String TOP = "top";
/** The Constant X_SMALL. */
String X_SMALL = "x-small";
/** The Constant X_LARGE. */
String X_LARGE = "x-large";
/** The Constant XX_SMALL. */
String XX_SMALL = "xx-small";
/** The Constant XX_LARGE. */
String XX_LARGE = "xx-large";
String WAIT = "wait";
/** The Constant VISIBLE. */
String VISIBLE = "visible";
}