-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_head.php
125 lines (104 loc) · 6.03 KB
/
html_head.php
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/**
* HTML head area page
* This page includes CSS settings and NAV settings
*
* Serial: 120317
* by: M.Karminski
*
*/
//HTML Area Start
?>
<!DOCTYPE HTML>
<html>
<!--
Classsheet Version 0.9
Copyright (C) 2011,2012 M.karminski
For more information please see documents.
M.Karminski
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php print $SYSTEM_NAME; ?></title>
<!-- style for editable grid -->
<link rel="stylesheet" href="scripts/style.css" type="text/css" media="screen">
<!-- CSS Area Start -->
<style type="text/css" media="screen">
/** Global settings */
body { margin: 0; font-size: 12px;}
h2 { margin: 0 0 0 20px; font-size: 18px; }
h6 { margin: 0 0 0 10px; font-size: 12px; }
/** Special TABLE tag settings */
table { border:1px solid #000; margin:0px;}
tr { border:0; padding:0; margin:0;}
th { color: #4f4f4f;}
td { border: 0px solid #000; font-size: 12px; padding:0; text-align: center;}
.borderedTd { border-left: 1px solid #000; font-size: 12px; width:80px; margin:0; padding:0; text-align:center;}
.Thead { width: 40px;}
/** NAV settings */
.mainTop { width: 100%; height: 30px; background: url(images/title_banner_bg.png) repeat-x;}
.mainTop a { color: #CCC; height: 12px; padding: 7px 4px 7px 4px; text-decoration: none; line-height: 30px; }
.mainTop a:hover { background-color: #4C4C4C; height: 12px; padding: 7px 4px 7px 4px; line-height: 30px;}
.logo { float: left; height: 30px; width: 111px; background: url(images/classsheet.png) no-repeat;}
.nav { float: left; height: 30px; width: auto;}
.navRight { float: right; height: 30px; width: auto;}
.actived { background: url(images/active.png) repeat-x; color: #FFF;}
/** Main Middle area settings */
.mainMiddle { margin: 0px;}
.mainMiddleBlockLeft { float: left; height: 240px; width: 200px;}
.mainMiddleBlockRight { float: left; height: 240px; width: 400px;}
/** Main Title settings */
.title { float:left; margin: 20px 0 0 0; border-left: 6px #2d2d2d solid; padding-left: 19px;}
.underline { height: 2px; width: 500px; background: url(images/sub_title_bg.png); font-size: 0px;}
.form { border-left: 6px #2d2d2d solid; float: left; margin-top:20px; padding-left:19px;}
.angle { background: url(images/angle.png) no-repeat; text-align:center;}
.classBlockLeft { height: 240px; width: 900px; float: left;}
.classBlockRight { height: 240px; width: 270px; float: left; margin-left: 20px;}
.totalScheduleTable table { width: 1600px;}
.totalScheduleTable thead { border-bottom:1px solid #000;}
.totalScheduleTable th { border-left:1px solid #000;border-bottom:1px solid #000;}
.totalScheduleTable tr { border:0; padding:0; margin:0;}
.totalScheduleTable td { border-left: 1px solid #000; font-size: 12px; width:80px; margin:0; padding:0; text-align:center;}
.classroomScheduleTable table { width: 2200px;}
.classroomScheduleTable thead { border-bottom:1px solid #000;}
.classroomScheduleTable th { border-left:1px solid #000;border-bottom:1px solid #000;}
.classroomScheduleTable tr { border:0; padding:0; margin:0;}
.classroomScheduleTable td { border-left: 1px solid #000; font-size: 12px; width:80px; margin:0; padding:0; text-align:center;}
.studentsScheduleTable table { width: 800px;}
.studentsScheduleTable thead { border-bottom:1px solid #000;}
.studentsScheduleTable th { border-left:1px solid #000;border-bottom:1px solid #000;}
.studentsScheduleTable tr { border:0; padding:0; margin:0;}
.studentsScheduleTable td { border-left: 1px solid #000; font-size: 12px; width:80px; margin:0; padding:0; text-align:center;}
</style>
<!--[if IE]>
<style type="text/css">
a { color: #CCC; height: 12px; padding: 0px 4px 0px 4px; text-decoration: none; line-height: 30px; }
a:hover { background-color: #4C4C4C; height: 12px; padding: 0px 4px 0px 4px; line-height: 30px;}
</style>
<![endif]-->
</head>
<body>
<div class="mainTop">
<div class="logo"></div>
<div class="nav">
<a href="index.php" <?php if($PAGE_SWITCH == 0){print ('class="actived"');}?>>[ 首页 ]</a>
<a href="semester_manage.php" <?php if($PAGE_SWITCH == 1){print ('class="actived"');}?>>[ 学期管理 ]</a>
<a href="course_type_manage.php" <?php if($PAGE_SWITCH == 2){print ('class="actived"');}?>>[ 模块管理 ]</a>
<a href="course_manage.php" <?php if($PAGE_SWITCH == 3){print ('class="actived"');}?>>[ 课程管理 ]</a>
<a href="course_period_manage.php" <?php if($PAGE_SWITCH == 5){print ('class="actived"');}?>>[ 学时管理 ]</a>
<a href="class_manage.php" <?php if($PAGE_SWITCH == 4){print ('class="actived"');}?>>[ 班级管理 ]</a>
<a href="weeks_schedule_manage.php" <?php if($PAGE_SWITCH == 6){print ('class="actived"');}?>>[ 周课表管理 ]</a>
<a href="total_schedule_manage.php" <?php if($PAGE_SWITCH == 7){print ('class="actived"');}?>>[ 总课表管理 ]</a>
<a href="classroom_manage.php" <?php if($PAGE_SWITCH == 8){print ('class="actived"');}?>>[ 教室管理 ]</a>
<a href="teacher_manage.php" <?php if($PAGE_SWITCH == 9){print ('class="actived"');}?>>[ 教师管理 ]</a>
<a href="classroom_schedule_manage.php" <?php if($PAGE_SWITCH == 10){print ('class="actived"');}?>>[ 教室课程表管理 ]</a>
<a href="studentsCourseForm.php" <?php if($PAGE_SWITCH == 11){print ('class="actived"');}?>>[ 学生课程表信息 ]</a>
<a href="students_schedule_manage.php" <?php if($PAGE_SWITCH == 12){print ('class="actived"');}?>>[ 学生课程表管理 ]</a>
</div>
<div class="navRight">
<a href="course_import.php" <?php if($PAGE_SWITCH == 13){print ('class="actived"');}?>>[ 课程导入 ]</a>
<a href="class_import.php" <?php if($PAGE_SWITCH == 15){print ('class="actived"');}?>>[ 班级导入 ]</a>
<a href="setting.php" <?php if($PAGE_SWITCH == 15){print ('class="actived"');}?>>[ 设置 ]</a>
</div>
</div>