-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inhalte für Python-Kurs hinzugefügt.
- Loading branch information
Showing
2 changed files
with
189 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> | ||
<html> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||
<title>The courses of the Edirom Summer School 2014</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<h1>Die Kurse der Edirom Summer School 2014</h1> | ||
<table> | ||
<tr> | ||
<td>Kurs-Name</td> | ||
<td>Zeit</td> | ||
<td>Dozent(en)</td> | ||
</tr> | ||
<tr> | ||
<td>DARIAH-DE Infrastruktur</td> | ||
<td>Mo. (8. 9.), 14:00–17:30 Uhr</td> | ||
<td>Thomas Kollatz und Harald Lordick</td> | ||
</tr> | ||
<tr> | ||
<td>Edirom Tools</td> | ||
<td>Do. (11. 9.), 09:00 bis Dr. (12. 9.), 12:30 Uhr</td> | ||
<td>Daniel Röwenstrunk</td> | ||
</tr> | ||
<tr> | ||
<td>Edirom User Forum</td> | ||
<td>Do. (11. 9.), 17:45–18:30 Uhr</td> | ||
<td>Nikolaos Beer</td> | ||
</tr> | ||
<tr> | ||
<td>Encoding and Rendering of MEI (english)</td> | ||
<td>Mi. (10. 9.), 9:00–17:30</td> | ||
<td>Laurent Pugin und Johannes Kepper</td> | ||
</tr> | ||
<tr> | ||
<td>Konzeption Digitaler Musikausgaben</td> | ||
<td>Mo. (8. 9.), 9:00–12:30 Uhr</td> | ||
<td>Johannes Kepper</td> | ||
</tr> | ||
<tr> | ||
<td>MEI Einführung (deutsch)</td> | ||
<td>Mo. (8. 9.), 14:00 Uhr bis Di. (9. 9.), 17:30 Uhr</td> | ||
<td>Maja Hartwig und Kristina Richts</td> | ||
</tr> | ||
<tr> | ||
<td>MEI Introduction (english)</td> | ||
<td>Mo. (8. 9.), 14:00 Uhr bis Di. (9. 9.), 17:30 Uhr</td> | ||
<td>Johannes Kepper</td> | ||
</tr> | ||
<tr> | ||
<td>MEI Metadaten</td> | ||
<td>Mi. (10. 9.), 9:00–17:30 Uhr</td> | ||
<td>Kristina Richts</td> | ||
</tr> | ||
<tr> | ||
<td>ODD Einführung</td> | ||
<td>Mi. (10. 9.), 14:00 Uhr bis Do. (11. 9.), 12:30 Uhr</td> | ||
<td>Peter Stadler</td> | ||
</tr> | ||
<tr> | ||
<td>Python Einführung</td> | ||
<td>Do. (11. 9.), 14:00 Uhr bis Fr. (12. 9.), 12:30 Uhr</td> | ||
<td>Frank Zalkow</td> | ||
</tr> | ||
<tr> | ||
<td>TEI Einführung</td> | ||
<td>Di. (9. 9.), 09:00 Uhr bis Mi. (10. 9.), 12:30 Uhr</td> | ||
<td>Agnes Brauer</td> | ||
</tr> | ||
<tr> | ||
<td>XPath und Reguläre Ausdrücke</td> | ||
<td>Mo. (8. 9.), 14:00 bis Di. (9. 9.), 17:30 Uhr</td> | ||
<td>Daniel Röwenstrunk</td> | ||
</tr> | ||
<tr> | ||
<td>XSLT Einführung</td> | ||
<td>Mi. (10. 9.), 9:00 Uhr bis Do. (11. 9.), 12:30 Uhr</td> | ||
<td>Benjamin W. Bohl</td> | ||
</tr> | ||
</table> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
@import url(http://fonts.googleapis.com/css?family=Droid+Sans); | ||
|
||
body { | ||
font-family: 'Droid Sans', sans-serif; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
} | ||
|
||
table { | ||
|
||
font-family: 'Droid Sans', sans-serif; | ||
|
||
margin:0px;padding:0px; | ||
margin-bottom: 2%; | ||
width:99%; | ||
box-shadow: 10px 10px 5px #888888; | ||
border:1px solid #000000; | ||
|
||
-moz-border-radius-bottomleft:0px; | ||
-webkit-border-bottom-left-radius:0px; | ||
border-bottom-left-radius:0px; | ||
|
||
-moz-border-radius-bottomright:0px; | ||
-webkit-border-bottom-right-radius:0px; | ||
border-bottom-right-radius:0px; | ||
|
||
-moz-border-radius-topright:0px; | ||
-webkit-border-top-right-radius:0px; | ||
border-top-right-radius:0px; | ||
|
||
-moz-border-radius-topleft:0px; | ||
-webkit-border-top-left-radius:0px; | ||
border-top-left-radius:0px; | ||
|
||
border-collapse: collapse; | ||
border-spacing: 0; | ||
height:100%; | ||
}tr:last-child td:last-child { | ||
-moz-border-radius-bottomright:0px; | ||
-webkit-border-bottom-right-radius:0px; | ||
border-bottom-right-radius:0px; | ||
} | ||
table tr:first-child td:first-child { | ||
-moz-border-radius-topleft:0px; | ||
-webkit-border-top-left-radius:0px; | ||
border-top-left-radius:0px; | ||
} | ||
table tr:first-child td:last-child { | ||
-moz-border-radius-topright:0px; | ||
-webkit-border-top-right-radius:0px; | ||
border-top-right-radius:0px; | ||
}tr:last-child td:first-child{ | ||
-moz-border-radius-bottomleft:0px; | ||
-webkit-border-bottom-left-radius:0px; | ||
border-bottom-left-radius:0px; | ||
}tr:hover td{ | ||
|
||
} | ||
tr:nth-child(odd){ background-color:#aad4ff; } | ||
tr:nth-child(even) { background-color:#ffffff; }td{ | ||
vertical-align:middle; | ||
|
||
|
||
border:1px solid #000000; | ||
border-width:0px 1px 1px 0px; | ||
text-align:left; | ||
padding:7px; | ||
font-size:14px; | ||
font-weight:normal; | ||
color:#000000; | ||
}tr:last-child td{ | ||
border-width:0px 1px 0px 0px; | ||
}tr td:last-child{ | ||
border-width:0px 0px 1px 0px; | ||
}tr:last-child td:last-child{ | ||
border-width:0px 0px 0px 0px; | ||
} | ||
tr:first-child td{ | ||
background:-o-linear-gradient(bottom, #005fbf 5%, #003f7f 100%); background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #005fbf), color-stop(1, #003f7f) ); | ||
background:-moz-linear-gradient( center top, #005fbf 5%, #003f7f 100% ); | ||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#005fbf", endColorstr="#003f7f"); background: -o-linear-gradient(top,#005fbf,003f7f); | ||
|
||
background-color:#005fbf; | ||
border:0px solid #000000; | ||
text-align:center; | ||
border-width:0px 0px 1px 1px; | ||
font-family: 'Droid Sans', sans-serif; | ||
font-size:18px; | ||
font-weight:bold; | ||
color:#ffffff; | ||
} | ||
tr:first-child:hover td{ | ||
background:-o-linear-gradient(bottom, #005fbf 5%, #003f7f 100%); background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #005fbf), color-stop(1, #003f7f) ); | ||
background:-moz-linear-gradient( center top, #005fbf 5%, #003f7f 100% ); | ||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#005fbf", endColorstr="#003f7f"); background: -o-linear-gradient(top,#005fbf,003f7f); | ||
|
||
background-color:#005fbf; | ||
} | ||
tr:first-child td:first-child{ | ||
border-width:0px 0px 1px 0px; | ||
} | ||
tr:first-child td:last-child{ | ||
border-width:0px 0px 1px 1px; | ||
} |