Changeset 14 for bitstructures

Show
Ignore:
Timestamp:
11/02/07 09:46:51 (14 months ago)
Author:
simon
Message:

Some styling tweaks.

Location:
bitstructures/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • bitstructures/trunk/css/bitstructures.css

    r13 r14  
    11body { 
    2         font-family: "Lucida Grande", Helvetica, Arial, sans-serif; 
    3         font-size: 12px; 
     2        font-family: Arial, sans-serif; 
     3        font-size: small; 
    44        line-height: 1.5; 
    55        margin: 0; 
     
    77} 
    88 
    9 #nameplate { 
     9#nameplate-container { 
    1010        margin: 0; 
    1111        padding: 24px 0 16px 24px; 
    1212        background-color: #ffde00; 
     13} 
     14 
     15#nameplate { 
     16        height: 20px; 
    1317} 
    1418 
     
    1721} 
    1822 
    19 #nameplate a img { 
     23a img { 
    2024        border-width: 0; 
    2125} 
    2226 
    2327#container { 
    24         max-width: 70em; 
     28        max-width: 64em; 
    2529} 
    2630 
     
    3135 
    3236#content { 
    33         padding: 0 24px 0 24px; 
     37        padding: 0 24px 48px 24px; 
    3438} 
    3539 
     
    5155 
    5256h2 { 
    53         font-size: 18px; 
     57        font-size: 1.44em; 
    5458        font-weight: bold; 
    5559        margin: 0; 
     
    6569 
    6670h2 a:hover { 
     71        text-decoration: none; 
    6772        background-color: #82993d; 
    6873        color: white; 
     74} 
     75 
     76p.entry-date { 
     77        margin-top: 0; 
    6978} 
    7079 
     
    7281        font-weight: bold; 
    7382        color: #145ccc; 
    74         text-decoration: underline; 
     83        text-decoration: none; 
    7584} 
    7685 
    7786a:hover { 
    78         background-color: #145ccc; 
    79         color: white; 
    80         text-decoration: none; 
     87        text-decoration: underline; 
    8188} 
    8289 
  • bitstructures/trunk/templates/substructure/base.html

    r12 r14  
    66<head> 
    77<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"> 
    99</head> 
    1010 
    1111<body> 
    1212 
    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" 
     14alt="Bitstructures"></a></div></div> 
    1515 
    1616<div id="container"> 
     
    2727<div class="info-entry"> 
    2828<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> 
     31at the University of Toronto 
     32where he builds and designs web apps and infrastructure. 
    3033At the moment he is working on accessibility support in 
    3134the <a href="http://dojotoolkit.org/">Dojo</a> JavaScript toolkit.</p> 
  • bitstructures/trunk/templates/substructure/entry.html

    r6 r14  
    66 
    77{% 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> 
    99{% endif %} 
    1010