Changeset 12
- Timestamp:
- 10/17/07 20:30:11 (12 months ago)
- Location:
- bitstructures/trunk
- Files:
-
- 2 modified
-
css/bitstructures.css (modified) (5 diffs)
-
templates/substructure/base.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bitstructures/trunk/css/bitstructures.css
r9 r12 1 1 body { 2 2 font-family: Verdana, sans-serif; 3 font-family: "Lucida Grande", Helvetica, Arial, sans-serif; 3 4 font-size: 12px; 4 line-height: 1. 4;5 line-height: 1.5; 5 6 margin: 0; 6 7 padding: 0; … … 9 10 #nameplate { 10 11 margin: 0; 11 padding: 40px 0 8px 60px;12 padding: 24px 0 16px 24px; 12 13 background-color: #ffde00; 13 border-bottom: 8px solid #edb; 14 } 15 16 #nameplate a { 17 background: transparent; 14 18 } 15 19 … … 18 22 } 19 23 20 #content { 24 #container { 25 max-width: 70em; 26 } 27 28 #content-container { 21 29 float: left; 22 margin: 0;23 padding: 0;24 30 width: 70%; 25 31 } 26 32 33 #content { 34 padding: 0 24px 0 24px; 35 } 36 37 #info-block-container { 38 margin: 0 0 0 70%; 39 } 40 27 41 #info-block { 28 margin: 0 0 0 70%; 29 padding: 0; 42 padding: 0 24px 0 0; 30 43 } 31 44 32 45 .info-entry { 33 padding: 40px 60px0 0;46 padding: 24px 0 0 0; 34 47 } 35 48 36 49 .entry { 37 padding: 40px 60px 0 60px;50 padding: 24px 0 0 0; 38 51 } 39 52 40 53 h2 { 41 font-size: 24px;42 font-weight: normal;54 font-size: 18px; 55 font-weight: bold; 43 56 margin: 0; 44 57 padding: 0; 58 color: #444; 45 59 } 46 60 … … 48 62 text-decoration: none; 49 63 font-weight: bold; 50 color: # e60;64 color: #82993d; 51 65 } 52 66 53 67 h2 a:hover { 54 background-color: # e60;68 background-color: #82993d; 55 69 color: white; 56 70 } … … 58 72 a { 59 73 font-weight: bold; 60 color: # 249;74 color: #145ccc; 61 75 text-decoration: underline; 62 76 } 63 77 64 78 a:hover { 65 color: #e60; 79 background-color: #145ccc; 80 color: white; 81 text-decoration: none; 82 } 83 84 ul { 85 margin-left: 0; 86 padding-left: 0; 87 list-style: inside; 88 list-style-type: square; 66 89 } 67 90 -
bitstructures/trunk/templates/substructure/base.html
r6 r12 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 2 "http://www.w3.org/TR/html4/strict.dtd"> 3 1 4 <html> 2 5 … … 11 14 alt="Bitstructures"></a></div> 12 15 16 <div id="container"> 17 18 <div id="content-container"> 13 19 <div id="content"> 14 20 {% block content %}{% endblock %} 15 21 </div> 22 </div> 16 23 24 <div id="info-block-container"> 17 25 <div id="info-block"> 18 26 … … 38 46 39 47 </div> 48 </div> 49 50 </div> 40 51 41 52 </body>
