From f6986ac9ad641e41335ae782ff521cf3867ed181 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 1 Aug 2009 20:06:46 +0000 Subject: Basic files for THTTPD test git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1998 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/examples/thttpd/content/style.css | 80 +++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 nuttx/examples/thttpd/content/style.css (limited to 'nuttx/examples/thttpd/content/style.css') diff --git a/nuttx/examples/thttpd/content/style.css b/nuttx/examples/thttpd/content/style.css new file mode 100644 index 000000000..bfb0997a8 --- /dev/null +++ b/nuttx/examples/thttpd/content/style.css @@ -0,0 +1,80 @@ +h1 +{ + text-align: center; + font-size:14pt; + font-family:arial,helvetica; + font-weight:bold; + padding:10px; +} + +body +{ + background-color: #fffeec; + color:black; + font-size:8pt; + font-family:arial,helvetica; +} + +.menu +{ + margin: 4px; + width:60%; + padding:2px; + border: solid 1px; + background-color: #fffcd2; + text-align:left; + font-size:9pt; + font-family:arial,helvetica; +} + +div.menubox +{ + width: 25%; + border: 0; + float: left; + text-align: center; +} + +.contentblock +{ + margin: 4px; + width:60%; + padding:2px; + border: 1px dotted; + background-color: white; + font-size:8pt; + font-family:arial,helvetica; +} + +p.intro +{ + margin-left:20px; + margin-right:20px; + font-size:10pt; + font-family:arial,helvetica; +} + +p.clink +{ + font-size:12pt; + font-family:courier,monospace; + text-align:center; +} + +p.clink9 +{ + font-size:9pt; + font-family:courier,monospace; + text-align:center; +} + +p +{ + padding-left:10px; +} + +p.right +{ + text-align:right; +} + -- cgit v1.2.3