Team:Gothenburg/Calendar
From 2014.igem.org
(Difference between revisions)
(First bugfix after first implementation of our own calendar) |
|||
Line 2: | Line 2: | ||
{{Team:Gothenburg/UpperTemplate}} | {{Team:Gothenburg/UpperTemplate}} | ||
- | <!doctype HTML> | + | <!-- <!doctype HTML> --> |
<html> | <html> | ||
<head> | <head> | ||
Line 9: | Line 9: | ||
<style type="text/css"> | <style type="text/css"> | ||
+ | |||
+ | h1.firstHeading { | ||
+ | display: none; | ||
+ | } | ||
#calendar>table { | #calendar>table { | ||
Line 32: | Line 36: | ||
#content { | #content { | ||
- | + | width: 960px; | |
- | width: | + | margin-left: auto; |
- | + | margin-right: auto; | |
- | + | ||
} | } | ||
+ | |||
+ | #content1 { | ||
+ | min-height: 100px; | ||
+ | width: 500px; | ||
+ | margin: 2em; | ||
+ | border: 2px solid #008000; | ||
+ | } | ||
</style> | </style> | ||
Line 53: | Line 63: | ||
var selectedContent = $( "#" + dateId + ">span").html(); | var selectedContent = $( "#" + dateId + ">span").html(); | ||
- | $( "# | + | $( "#content1" ).html( selectedContent ); |
} | } | ||
Line 61: | Line 71: | ||
<body> | <body> | ||
- | <article id=" | + | <article id="content1"> |
</article> | </article> |
Revision as of 12:58, 6 August 2014
26
|
27
|
28
|
29
|
30
|
31
|
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
|
1
|
2
|
3
|
4
|
5
|
6
|
30
|
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
|
1
|
2
|
3
|
28
|
29
|
30
|
31
|
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
|
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
|
1
|
2
|
3
|
4
|
5
|