Changeset 14 for bitstructures
- Timestamp:
- 11/02/07 09:46:51 (14 months ago)
- Location:
- bitstructures/trunk
- Files:
-
- 3 modified
-
css/bitstructures.css (modified) (7 diffs)
-
templates/substructure/base.html (modified) (2 diffs)
-
templates/substructure/entry.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitstructures/trunk/css/bitstructures.css
r13 r14 1 1 body { 2 font-family: "Lucida Grande", Helvetica,Arial, sans-serif;3 font-size: 12px;2 font-family: Arial, sans-serif; 3 font-size: small; 4 4 line-height: 1.5; 5 5 margin: 0; … … 7 7 } 8 8 9 #nameplate {9 #nameplate-container { 10 10 margin: 0; 11 11 padding: 24px 0 16px 24px; 12 12 background-color: #ffde00; 13 } 14 15 #nameplate { 16 height: 20px; 13 17 } 14 18 … … 17 21 } 18 22 19 #nameplatea img {23 a img { 20 24 border-width: 0; 21 25 } 22 26 23 27 #container { 24 max-width: 70em;28 max-width: 64em; 25 29 } 26 30 … … 31 35 32 36 #content { 33 padding: 0 24px 024px;37 padding: 0 24px 48px 24px; 34 38 } 35 39 … … 51 55 52 56 h2 { 53 font-size: 1 8px;57 font-size: 1.44em; 54 58 font-weight: bold; 55 59 margin: 0; … … 65 69 66 70 h2 a:hover { 71 text-decoration: none; 67 72 background-color: #82993d; 68 73 color: white; 74 } 75 76 p.entry-date { 77 margin-top: 0; 69 78 } 70 79 … … 72 81 font-weight: bold; 73 82 color: #145ccc; 74 text-decoration: underline;83 text-decoration: none; 75 84 } 76 85 77 86 a:hover { 78 background-color: #145ccc; 79 color: white; 80 text-decoration: none; 87 text-decoration: underline; 81 88 } 82 89 -
bitstructures/trunk/templates/substructure/base.html
r12 r14 6 6 <head> 7 7 <title>{% block title %}Bitstructures{% endblock %}</title> 8 <link rel="stylesheet" href="{{ MEDIA_URL }}css/bitstructures.css" type="text/css" />8 <link rel="stylesheet" href="{{ MEDIA_URL }}css/bitstructures.css" type="text/css"> 9 9 </head> 10 10 11 11 <body> 12 12 13 <div id="nameplate "><a href="/"><img src="{{ MEDIA_URL }}images/bitstructures4.gif"14 alt="Bitstructures"></a></div> 13 <div id="nameplate-container"><div id="nameplate"><a href="/"><img src="{{ MEDIA_URL }}images/bitstructures4.gif" 14 alt="Bitstructures"></a></div></div> 15 15 16 16 <div id="container"> … … 27 27 <div class="info-entry"> 28 28 <h2>About me</h2> 29 <p>Simon builds and designs web apps and infrastructure. 29 <p>Simon Bates is an accessibility architect at the 30 <a href="http://atrc.utoronto.ca/">Adaptive Technology Resource Centre</a> 31 at the University of Toronto 32 where he builds and designs web apps and infrastructure. 30 33 At the moment he is working on accessibility support in 31 34 the <a href="http://dojotoolkit.org/">Dojo</a> JavaScript toolkit.</p> -
bitstructures/trunk/templates/substructure/entry.html
r6 r14 6 6 7 7 {% if entry.date_published %} 8 <p >{{ entry.date_published|date:"F j, Y" }}</p>8 <p class="entry-date">{{ entry.date_published|date:"F j, Y" }}</p> 9 9 {% endif %} 10 10
