00001 /* 00002 * $Id: styles_8h-source.html,v 1.1 2007/07/03 19:42:39 sebdiaz Exp $ 00003 * 00004 * Copyright (C) 1996 - 2004 Stephen F. Booth 00005 * 2007 Sebastien DIAZ <sebastien.diaz@gmail.com> 00006 * Part of the GNU cgicc library, http://www.gnu.org/software/cgicc 00007 * 00008 * This library is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU Lesser General Public 00010 * License as published by the Free Software Foundation; either 00011 * version 3 of the License, or (at your option) any later version. 00012 * 00013 * This library is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this library; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 00021 */ 00022 #ifndef _STYLES_H_ 00023 #define _STYLES_H_ 1 00024 00025 #include <string> 00026 00027 const std::string styles = 00028 "body { color: black; background: white; }\n" 00029 "span.red { color:red; }\n" 00030 "hr.half { width: 60%; margin-left: auto; margin-right: auto; }\n" 00031 "div.center { text-align: center; }\n" 00032 "div.notice { border: solid thin; padding: 1em; margin: 1em 0; " 00033 "background: #ddd; text-align: center; }" 00034 "table { width: 90%; margin-left: auto; margin-right: auto; }\n" 00035 "tr.title, td.title { color: white; background: black; font-weight: bold; " 00036 "text-align: center; }\n" 00037 "tr.data, td.data { background: #ddd; }\n" 00038 "td.form { background: #ddd; text-align: center; }\n" 00039 ; 00040 00041 #endif /* _STYLES_H_ */