Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/EjercitarWeb/WebContent/templateCSS.jsp
blob: ece1005aa6365d7b93660d8daa136f9b13067eb2 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" href="css/estilo_ejercitar.css" type="text/css" />
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Cantarell:regular,italic,bold,bolditalic" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=Droid+Serif:regular,italic,bold,bolditalic" rel="stylesheet" />
<link rel="stylesheet" href="css/grey.css" />
<link href="./css/styleTable.css" rel="stylesheet" type="text/css" />    
<script src="js/modernizr-1.5.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script src="js/main.js" type="text/javascript"></script>
<script src="js/jquery-1.3.2.min.js"  type="text/javascript"></script>
<script src="js/scrolltable.js"  type="text/javascript"></script>
<script type="text/javascript">
	    $(document).ready(function() {
			/* zebra stripe the tables (not necessary for scrolling) */
	        var tbl = $("table.tbl1");
	        addZebraStripe(tbl);
	        addMouseOver(tbl);
			/* make the table scrollable with a fixed header */
	    });

	    function addZebraStripe(table) {
            table.find("tbody tr:odd").addClass("alt");
        }

        function addMouseOver(table) {
            table.find("tbody tr").hover(
                 function() {
                     $(this).addClass("over");
                 },
                 function() {
                     $(this).removeClass("over");
                 }
             );
        }
	</script>
</head>
<body>
	<form>
		<div id="sidebar"></div>
		<div id="rsidebar"></DIV>
		<div id="header" style="overflow: visible;" onclick='location.href="/"'>
		</div>
		<div id="footer" style="overflow: visible;">
			<span>Ejercitar: Un Modelo de aprendizaje asistido por computadora</span>
			<span>Ceci Godoy - Samu Reyes. Ingeniería en Informática</span>
			<span>Facultad Politécnica - Universidad Nacional de Asunción</span>
		</div>
		<div id="content"></div>
	</form>
</body>
</html>