|
From: Eric F. <wg...@us...> - 2004-08-04 01:53:11
|
Update of /cvsroot/phpliteadmin/phpLiteAdmin/style In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25296/style Added Files: main.css main.xsl navbar.css navbar.xsl Log Message: Initial Commit --- NEW FILE: main.css --- body { font-family: Verdana, Arial, Helvetica, Tahoma, sans-serif; font-size: 10pt; background: #EEFDEE; color: black; } h1 { font-size: 14pt; font-weight: bold; } --- NEW FILE: navbar.xsl --- <?xml version="1.0" encoding="ISO-8859-1" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html lang="en" dir="ltr"> <head> <title>phpLiteAdmin - Navigation Bar</title> <link rel="stylesheet" href="style/navbar.css" type="text/css" /> </head> <body> <ul> <xsl:for-each select="databases/database"> <li><xsl:value-of select="@name" /> <ul> <li><xsl:value-of select="table" /></li> </ul> </li> </xsl:for-each> </ul> </body> </html> </xsl:template> </xsl:stylesheet> --- NEW FILE: main.xsl --- <?xml version="1.0" encoding="ISO-8859-1" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html lang="en" dir="ltr"> <head> <title>phpLiteAdmin - Content Page</title> <link rel="stylesheet" href="style/main.css" type="text/css" /> </head> <body> <h1>Welcome to phpLiteAdmin</h1> <strong>SQLite <xsl:value-of select="content/details/version" /></strong> </body> </html> </xsl:template> </xsl:stylesheet> --- NEW FILE: navbar.css --- body { font-family: Verdana, Arial, Helvetica, Tahoma, sans-serif; font-size: 10pt; background: #DDEDFD; color: black; margin: 0px; padding: 0px; } ul li { display: list-item; list-style-type: disc; } ul li ul li { display: list-item; list-style-type: square; } |