-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (148 loc) · 4.62 KB
/
index.html
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>MathPASS</title>
<style type="text/css">
html, body {
height: 100%;
background-color: #eeeeee;
}
.title {
font-size: 14px;
color: #FFFFFF;
text-align: center;
background-color:#7088AD;
width:20%;
}
.problem-item {
width:100%;
display: -webkit-box;
border-bottom:solid 1px #c2c2c2;
-webkit-box-orient:horizontal;
}
.chapter-item {
width:100%;
display: -webkit-box;
border-bottom:solid 1px #c2c2c2;
-webkit-box-orient:horizontal;
}
.assignment-item{
width:100%;
display: -webkit-box;
-webkit-box-orient: horizontal;
}
.assignment-title {
font-size: 16px;
color: #FFFFFF;
text-align: center;
background-color:#7088AD;
width:25%;
}
.assignment-title1 {
font-size: 16px;
color: #FFFFFF;
text-align: center;
background-color:#7088AD;
width:14%;
}
.assignment-item div{
width:25%;
text-align:center;
border-left: solid 1px #7088AD;
border-bottom:solid 1px #7088AD;
}
.x-item-selected{
background-color:rgb(27,134,204);
color:white;
font-weight:bold;
}
.students{
width:100%;
display: -webkit-box;
-webkit-box-orient: horizontal;
}
.students div{
width:14%;
font-size:14px;
text-align:center;
border: solid 1px #ccc;
}
.problems{
width:80%;
height:25px;
display: -webkit-box;
-webkit-box-orient: horizontal;
}
.problems div{
width:80%;
font-size:16px;
text-align:center;
border: solid 1px #ccc;
}
.normal_btn
{
font-size: 12px;
width: 68px;
height: 20px;
cursor: hand;
border:none;
font-family: Arial, Helvetica,sans-serif;
background-image: url(images/but_bg.gif);
color: white;
}
</style>
<style type="text/css">
/**
* Example of an initial loading indicator.
* It is recommended to keep this as minimal as possible to provide instant feedback
* while other resources are still being loaded for the first time
*/
html, body {
height: 100%;
background-color: #1985D0
}
#appLoadingIndicator {
position: absolute;
top: 50%;
margin-top: -15px;
text-align: center;
width: 100%;
height: 30px;
-webkit-animation-name: appLoadingIndicator;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: linear;
}
#appLoadingIndicator > * {
background-color: #FFFFFF;
display: inline-block;
height: 30px;
-webkit-border-radius: 15px;
margin: 0 5px;
width: 30px;
opacity: 0.8;
}
@-webkit-keyframes appLoadingIndicator{
0% {
opacity: 0.8
}
50% {
opacity: 0
}
100% {
opacity: 0.8
}
}
</style>
<!-- The line below must be kept intact for Sencha Command to build your application -->
<script id="microloader" type="text/javascript" src=".sencha/app/microloader/development.js"></script>
</head>
<body>
<div id="appLoadingIndicator">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>