54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
		
		
			
		
	
	
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
| 
								 | 
							
								/* This stylesheet file contains the visual aspect of the page, it reference elements by their class.
							 | 
						||
| 
								 | 
							
								In this file, you can set visual attributes like "color", "background-color", "border"… */
							 | 
						||
| 
								 | 
							
								#nav {
							 | 
						||
| 
								 | 
							
								    height: 35px;
							 | 
						||
| 
								 | 
							
								    background: url("../images/nav_bar_bg.png") repeat-x scroll left center transparent;
							 | 
						||
| 
								 | 
							
								    border-radius: 3px 3px 3px 3px;
							 | 
						||
| 
								 | 
							
								    box-shadow: 0 0 5px #45433E;
							 | 
						||
| 
								 | 
							
								    margin: 0 0 20px;
							 | 
						||
| 
								 | 
							
								    padding: 0;
							 | 
						||
| 
								 | 
							
									display:block;
							 | 
						||
| 
								 | 
							
									float:none;
							 | 
						||
| 
								 | 
							
									overflow:visible;
							 | 
						||
| 
								 | 
							
									width:100%;
							 | 
						||
| 
								 | 
							
									background-color:transparent;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								#nav:before {
							 | 
						||
| 
								 | 
							
									visibility:hidden;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								#nav li {
							 | 
						||
| 
								 | 
							
								    height: 39px;
							 | 
						||
| 
								 | 
							
								    color: #FFFFFF;
							 | 
						||
| 
								 | 
							
								    display: inline;
							 | 
						||
| 
								 | 
							
								    float: left;
							 | 
						||
| 
								 | 
							
								    line-height: 39px;
							 | 
						||
| 
								 | 
							
								    margin: -2px 15px 0;
							 | 
						||
| 
								 | 
							
								    padding: 0 30px;
							 | 
						||
| 
								 | 
							
								    text-align: center;
							 | 
						||
| 
								 | 
							
								    text-shadow: 0 -1px 0 #4F200D;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								#main_content {
							 | 
						||
| 
								 | 
							
								    background-color: #BCAD94;
							 | 
						||
| 
								 | 
							
								    border-radius: 3px 3px 3px 3px;
							 | 
						||
| 
								 | 
							
								    box-shadow: 0 0 5px #33322C;
							 | 
						||
| 
								 | 
							
								    float: none;
							 | 
						||
| 
								 | 
							
								    height: 300px;
							 | 
						||
| 
								 | 
							
								    margin: 0 0 20px;
							 | 
						||
| 
								 | 
							
								    padding: 15px 20px;
							 | 
						||
| 
								 | 
							
								    width: 940px;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								#content_title {
							 | 
						||
| 
								 | 
							
								    border-left: 4px solid #B6300C;
							 | 
						||
| 
								 | 
							
								    color: #f0f0f0;
							 | 
						||
| 
								 | 
							
								    font-size: 18px;
							 | 
						||
| 
								 | 
							
								    height: 20px;
							 | 
						||
| 
								 | 
							
								    line-height: 18px;
							 | 
						||
| 
								 | 
							
								    margin: 0 0 5px;
							 | 
						||
| 
								 | 
							
								    padding: 0 0 0 4px;
							 | 
						||
| 
								 | 
							
								    text-shadow: 0 -1px 0 #826f4f;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								#footer {
							 | 
						||
| 
								 | 
							
								    clear: both;
							 | 
						||
| 
								 | 
							
								    margin: 0;
							 | 
						||
| 
								 | 
							
								    padding: 0 0 10px;
							 | 
						||
| 
								 | 
							
								}
							 |