Team:Purdue/CalendarTemplate
From 2012.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
<html> | <html> | ||
<style type="text/css">> | <style type="text/css">> | ||
+ | body { | ||
+ | font: normal 12px/20px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; | ||
+ | color: #616B76; | ||
+ | } | ||
- | + | a { | |
- | + | color: #DF9496; | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
} | } | ||
- | # | + | #calendar { |
- | + | width: 141px; | |
- | + | padding: 0; | |
- | + | margin: 0; | |
- | + | border-left: 1px solid #A2ADBC; | |
- | + | font: normal 12px/20px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; | |
+ | color: #616B76; | ||
+ | text-align: center; | ||
+ | background-color: #fff; | ||
} | } | ||
- | + | .nav, .nav a { | |
- | + | font: bold 18px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; | |
- | + | color: #fff; | |
- | + | text-align: center; | |
+ | text-decoration: none; | ||
+ | } | ||
+ | |||
+ | |||
+ | caption { | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | width: 141px; | ||
+ | background: #A2ADBC; | ||
+ | color: #fff; | ||
+ | font: bold 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; | ||
+ | text-align: center; | ||
} | } | ||
- | + | th { | |
- | + | font: bold 11px/20px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; | |
- | + | color: #616B76; | |
- | + | background: #D9E2E1; | |
- | + | border-right: 1px solid #A2ADBC; | |
- | + | border-bottom: 1px solid #A2ADBC; | |
- | + | border-top: 1px solid #A2ADBC; | |
- | + | ||
} | } | ||
- | + | .today, td.today a, td.today a:link, td.today a:visited { | |
- | + | color: #F6F4DA; | |
- | + | font-weight: bold; | |
- | + | background: #DF9496; | |
} | } | ||
- | + | td { | |
- | + | border-right: 1px solid #A2ADBC; | |
+ | border-bottom: 1px solid #A2ADBC; | ||
+ | width: 20px; | ||
+ | height: 20px; | ||
+ | text-align: center; | ||
+ | background: url(images/bg_calendar.gif) no-repeat right bottom; | ||
} | } | ||
- | + | td a { | |
- | + | text-decoration: none; | |
- | + | font-weight: bold; | |
- | + | display: block; | |
- | + | } | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | td a:link, td a:visited { | |
- | + | color: #608194; | |
- | + | background: no-repeat; | |
- | + | } | |
- | + | ||
- | + | td a:hover, td a:active { | |
- | + | color: #6aa3ae; | |
+ | background: no-repeat right top; | ||
+ | } | ||
+ | </style> | ||
+ | <body> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | + | <table id="calendar" cellspacing="0" cellpadding="0" summary="This month's calendar"> | |
- | + | <caption><a href="#" title="previous month" class="nav">«</a> July 2012 <a href="#" title="next month" class="nav">»</a></caption> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | <tr> | |
- | + | <th scope="col" abbr="Sunday" title="Sunday">S</th> | |
- | + | <th scope="col" abbr="Monday" title="Monday">M</th> | |
- | + | <th scope="col" abbr="Tuesday" title="Tuesday">T</th> | |
- | + | <th scope="col" abbr="Wednesday" title="Wednesday">W</th> | |
- | + | <th scope="col" abbr="Thursday" title="Thursday">T</th> | |
- | + | <th scope="col" abbr="Friday" title="Friday">F</th> | |
+ | <th scope="col" abbr="Saturday" title="Saturday">S</th> | ||
+ | </tr> | ||
+ | <tr> | ||
- | + | <td>1</td> | |
+ | <td>2</td> | ||
+ | <td>3</td> | ||
+ | <td>4</td> | ||
+ | <td>5</td> | ||
+ | <td>6</td> | ||
+ | <td>7</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>8</td> | ||
+ | <td>9</td> | ||
+ | <td>10</td> | ||
+ | <td>11</td> | ||
+ | <td>12</td> | ||
+ | <td>13</td> | ||
+ | <td>14</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>15</td> | ||
+ | <td>16</td> | ||
+ | <td>17</td> | ||
+ | <td>18</td> | ||
+ | <td>19</td> | ||
+ | <td>20</td> | ||
+ | <td>21</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>22</td> | ||
+ | <td>23</td> | ||
+ | <td>24</td> | ||
+ | <td>25</td> | ||
+ | <td>26</td> | ||
+ | <td>27</td> | ||
+ | <td>28</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td>29</td> | ||
+ | <td>30</td> | ||
+ | <td>31</td> | ||
+ | <td> </td> | ||
+ | <td> </td> | ||
+ | <td> </td> | ||
+ | <td> </td> | ||
+ | </tr> | ||
+ | </table> | ||
- | + | </body> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
</html> | </html> |
Revision as of 23:14, 31 July 2012
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |