/******************************************************************************* * Copyright (c) 2015 Development Gateway, Inc and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the MIT License (MIT) * which accompanies this distribution, and is available at * https://opensource.org/licenses/MIT * * Contributors: * Development Gateway - initial API and implementation *******************************************************************************/ package org.devgateway.toolkit.forms.wicket.styles; import org.apache.wicket.request.resource.CssResourceReference; /** * The base CSS for the project. * * TODO: Convert to LESS; Bootstrap also uses LESS. */ public class BaseStyles extends CssResourceReference { private static final long serialVersionUID = 1L; public static final BaseStyles INSTANCE = new BaseStyles(); /** * Construct. */ public BaseStyles() { super(BaseStyles.class, "BaseStyles.css"); } }