1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/doc/style1.css
James Snyder bd1465ca50 Merge 0.6 branch to trunk.
Conflicts:
	SConstruct
	doc/en/arch_platform.html
	doc/en/comunity.html
	doc/en/overview.html
	doc/en/refman.html
	doc/en/refman_gen.html
	doc/en/status.html
	doc/en/tut_bootstick.html
	doc/images/lng_pt.png
	doc/images/minusnode.png
	doc/images/next.png
	doc/images/node.png
	doc/images/nodelast.png
	doc/images/plusnode.png
	doc/images/plusnodelast.png
	doc/images/previous.png
	doc/images/showall.png
	doc/images/sync.png
	doc/images/vertline.png
	doc/pt/arch.html
	doc/pt/arch_coding.html
	doc/pt/arch_con_term.html
	doc/pt/arch_newport.html
	doc/pt/arch_overview.html
	doc/pt/arch_platform.html
	doc/pt/arch_tcpip.html
	doc/pt/building.html
	doc/pt/comunity.html
	doc/pt/dl_binaries.html
	doc/pt/dl_old.html
	doc/pt/dl_sources.html
	doc/pt/downloads.html
	doc/pt/examples.html
	doc/pt/faq.html
	doc/pt/installing_i386.html
	doc/pt/installing_lm3s.html
	doc/pt/news.html
	doc/pt/overview.html
	doc/pt/refman_dep.html
	doc/pt/refman_gen.html
	doc/pt/status.html
	doc/pt/tc_386.html
	doc/pt/toolchains.html
	doc/pt/tut_openocd.html
	doc/pt/using.html
	romfs/LM3S.lua
	romfs/led.lua
	romfs/morse.lua
	romfs/pong.lua
	src/lua/linit.c
	src/modules/auxmods.h
	src/platform/lm3s/platform.c
	src/platform/lm3s/platform_conf.h
	src/platform/sim/platform_conf.h
2009-10-13 02:14:27 +00:00

213 lines
3.9 KiB
CSS

/*******************************************************************************
* Generic styling
******************************************************************************/
body {
padding: 0;
margin: 0;
font-family: tahoma,verdana,arial,helvetica,geneva,sans-serif;
background-color: #ffffff;
}
pre {
border: 1px dashed #ffbb22;
padding: 4px;
background-color: #ffddaa;
font-family: 'Monotype.com',"Courier New",Courier,monospace;
font-size: 90%;
line-height: 125%;
margin-left: 1em;
overflow: auto;
}
/*******************************************************************************
* Main layout
******************************************************************************/
/* Assume a logo size of 80x80 pixels! */
#logo {
background-image: url(images/title_background.png);
background-repeat: no-repeat;
background-position:right;
color:#000;
font: bold 150%/100% tahoma, Arial, sans-serif;
height: 90px;
margin: 0;
padding: 0;
width: 100%;
border-bottom: 0px solid #E7F1FA;
}
.logo_elua{
margin-top:10px;
margin-left:10px;
}
#nav {
float: left;
width: 170px;
margin-left: 8px;
padding-top: 5px;
}
#content {
padding-top: 10px;
margin: 0 8px 8px 181px;
}
/*******************************************************************************
* Logo styling
******************************************************************************/
#logo h6.selected {
/* margin: 2px 4px 2px 4px;
padding: 2px;
background-color: #137096;
color: white;
opacity:1.0;filter:alpha(opacity=100);
*/
}
#logo h6 {
margin: 2px 4px 2px 4px;
padding: 2px;
#background-color: white;
color: #137096;
}
.header_title{
font-size:36px;
color:#0b0c79;
font-weight:bold;
padding-left:20px;
}
h6{
font-size:10px;
}
#logo a {
text-decoration: none;
padding: 2px 4px 2px 4px;
}
#logo a.lang img{
border: 0px
}
#logo a.lang:hover {
#border: 2px solid #ccc;
# text-decoration: none;
# background-color: blue;
# color: white;
}
/*******************************************************************************
* Content styling
******************************************************************************/
#content p {
line-height: 120%;
padding-left: 1em;
}
#content h2 {
border: 1px solid #808080;
padding: 4px;
background-color: #a0ffa0;
font-size: 99%;
margin-left: 1em;
}
#content h3 {
border: 1px solid #808080;
padding: 5px;
background-color: #cee7ff;
color: #5c5c5c;
margin: 0;
}
#content table {
margin-left: 1em;
}
#content p.info {
margin-left: 3em;
}
#content p.doc {
margin-left: 2em;
}
#content ul {
padding-left: 1em;
margin-left: 40px;
}
#content ol {
margin-left: 2em;
}
#content h4 {
margin-left: 2em;
}
#content table {
border-collapse: collapse;
}
#content td {
border: 1px solid #808080;
padding: 5px;
}
#content th {
border: 2px solid #808080;
padding: 5px;
background-color: #c0c0c0;
}
/*******************************************************************************
* Table types
******************************************************************************/
table.invisible {
border: 0px solid black;
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
margin-top: 4px;
}
table.invisible td {
text-align: center;
border: 0px solid black;
}
/*******************************************************************************
* Other styles
******************************************************************************/
.docdiv {
padding-left: 1em;
}
.docdiv pre {
margin-left: 0;
}
.code {
border: 0;
padding: 4px;
background-color: white;
font-family: "Courier New",Courier,monospace;
font-size: 90%;
padding-left: 1em;
overflow: auto;
}
.warning {
color: red;
font-weight: bold;
}