forked from NJUST-FishTeam/ProblemPackApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
216 lines (190 loc) · 3.61 KB
/
Copy pathbase.css
File metadata and controls
216 lines (190 loc) · 3.61 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*------ start 页面整体效果 ------*/
html{
height: 100%;
}
body{
min-height: 100%;
position: relative;
padding-bottom: 74px;
background-color: #e6e6e6 !important;
font-family: "微软雅黑","Helvetica Neue",Helvetica,Arial,sans-serif;
}
.body-container{
top: 0px;
width: 88%;
bottom: 76px;
margin-left: 6%;
position: absolute;
background-color: #ffffff;
-webkit-border-bottom-right-radius:8px;
-webkit-border-bottom-left-radius:8px;
-moz-border-radius-bottomright:8px;
-moz-border-radius-bottomleft:8px;
}
/*------ end 页面整体效果 ------*/
/*------ start 头部 ------*/
.dHead{
top:0;
z-index:5;
width: 100%;
height: 106px;
position:absolute;
}
/*---- 住标题----*/
.maintitle{
position: relative;
padding-left: 30px;
font-family: "Helvetica Neue",Helvetica,"微软雅黑",Arial,sans-serif;
}
/*---- 导航条 ----*/
.step-navbar {
margin: 0 15px;
position: relative;
}
/*------ end 头部 ------*/
/*------ start 内容主体 ------*/
.dBody{
top: 106px;
z-index: 10;
width: 100%;
bottom: 76px;
overflow: auto;
position:absolute;
}
/*----- 各个步骤的标题 -----*/
.subhead{
margin-top: 10px;
padding-top: 13px;
padding-bottom: 10px;
font-size: 30px;
display: block;
text-align: center;
}
/*------ end 内容主体 ------*/
/*------ start 按钮 ------*/
.dBtn{
bottom:0px;
z-index:200;
height:70px;
width: 100%;
position:absolute;
padding: 20px 15px;
}
.preStepBtn{
left: 15px;
position: absolute;
display: inline-block;
}
.previewBtn{
right: 210px;
position: absolute;
display: inline-block;
}
.saveStepBtn{
right: 120px;
position: absolute;
display: inline-block;
}
.nextStepBtn{
right: 20px;
position: absolute;
display: inline-block;
}
/*------ end 按钮 ------*/
/*---- 页脚 ----*/
.footer{
position: absolute;
/*right: -20px;*/
right: 6%;
left: 0;
bottom: 0;
overflow: hidden;
height: 74px;
color: #999;
}
.footer-text {
padding-top: 18px;
}
.footer-p {
margin-top: 10px;
margin-bottom: 0px;
}
/*---- 题目内容编辑页需要编辑的部分 ----*/
.desc_text{
padding: 6px;
font-size: 16px;
border-radius: 4px;
white-space: pre-wrap;
word-wrap: break-word;
font-family: monospace;
background-color: #f6f4ec;
border: 1px solid #cccccc;
}
.problemItem
{
color: #5A8CD8;
margin-top: 13px;
margin-bottom: 8px;
display: inline-block;
}
.problemEditBar{
top: 106px;
width: 87%;
z-index: 99999;
padding-left: 15px;
position: fixed;
}
/*---- 添加题解页面 ----*/
.lblcode{
font-size: 20px;
font-weight: inherit;
}
.compiler{
width: 300px;
padding-left: 16px;
}
/*---- 上传文件的按钮 ----*/
.fileinput-button {
position: relative;
overflow: hidden;
/*margin-right: 20px;*/
}
.fileinput-button input {
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
-ms-filter: 'alpha(opacity=0)';
font-size: 200px;
direction: ltr;
cursor: pointer;
}
/*---- 下载文件的按钮 ----*/
.downloadico{
font-size: 80px;
opacity: 0.7;
}
.downloadBtn{
overflow: hidden;
width: 100px;
height: 100px;
}
.downloadBtn input{
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
-ms-filter: 'alpha(opacity=0)';
font-size: 200px;
direction: ltr;
cursor: pointer;
}
/*---- 帮助信息 ----*/
.helpText{
opacity: 0.3;
font-size: 13px;
color: black;
display: inline;
}