forked from abudac/INKE_WIScker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
204 lines (180 loc) · 4.47 KB
/
style.css
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
/* *************************************************************************************************
* Created by Andrea Budac at the University of Alberta
* Created under the INKE project and Dr. Rockwell and Dr. Ruecker
* Original idea by Robert Budac
* Contributors: Andrea Budac, Geoffrey Rockwell, Zachary Palmer, Robert Budac, Stan Ruecker
* *************************************************************************************************
* WIkcer (Wikipedia Idea Scraper) is a tool for scraping old revisions of Wikipedia articles.
* The corpus resulting from the scrape is then available to the user to analyze as they see fit.
*
* Copyright (C) 2014-2015 Andrea Budac and INKE
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *************************************************************************************************
*/
/*
* Element Section Tags
*/
/* Removes all auto formatting */
* {
padding: 0;
margin: 0;
}
body {
font-family: Helvetica, sans-serif;
}
/*
* IDs
*/
#printOutHere {
/* Make this box set height and scrollable */
overflow: auto;
height: 32em;
}
#previewFrame {
width: 100%;
height: 32em;
}
#aboutInfo {
font-size: 0.6em;
color: #55A156;
margin-right: 0.4%;
margin-left: 2%;
cursor: pointer;
}
#helpInfo {
font-size: 0.6em;
color: #55A156;
margin-left: 0.4%;
cursor: pointer;
}
#aboutPanel {
display: none;
overflow: hidden;
}
#helpPanel {
display: none;
overflow: hidden;
}
#progressBar {
width: 0%;
}
#progressBarWrapper {
display: none;
}
#errorOutputAlert {
display: none;
}
/*
* Classes
* Contains position and decoration
*/
.mainTitle {
font-family: Georgia, serif;
width: 90%;
font-size: 2.2em;
color: #3B703C;
font-weight: 500;
margin-left: 5%;
margin-right: 5%;
margin-top: 1.2%;
margin-bottom: 1.4%;
}
.uALogo img {
max-height: 1.6em;
}
.iNKELogo img {
max-height: 2.6em;
}
.uALogo {
display: inline-block;
position: absolute;
right: 0px;
top: 14px;
margin-right: 2.8em;
}
.iNKELogo {
display: inline-block;
position: absolute;
right: 0px;
top: 2px;
margin-right: 11em;
}
.btn {
margin-top: 8px;
}
.infoPanel {
text-align: left;
color: #224022;
width: 90%;
margin-left: 5%;
}
.wikiFormLeft {
float: left;
width: 20%; /* 20%, 24em */
/* Interior Padding */
padding-left: 3%;
padding-right: 3%;
padding-top: 2%;
padding-bottom: 2%;
/* Exterior Padding */
margin-left: 5%;
margin-top: 1%;
margin-bottom: 1%;
/* Dropshadow */
-webkit-box-shadow: 0px 3px 10px rgba(50, 50, 50, 0.69);
-moz-box-shadow: 0px 3px 10px rgba(50, 50, 50, 0.69);
box-shadow: 0px 3px 10px rgba(50, 50, 50, 0.69);
background-color: #FFFFFF;
}
.wikiOutputRight {
float: right;
width: 66.666666%; /* 66.666666%, 80em */
height: auto;
/* Interior Padding */
padding-left: 3%;
padding-right: 3%;
padding-top: 2%;
padding-bottom: 2%;
/* Exterior Padding */
margin-right: 5%;
margin-top: 1%;
margin-bottom: 1%;
/* Dropshadow */
-webkit-box-shadow: 0px 3px 10px rgba(50, 50, 50, 0.69);
-moz-box-shadow: 0px 3px 10px rgba(50, 50, 50, 0.69);
box-shadow: 0px 3px 10px rgba(50, 50, 50, 0.69);
background-color: #FFFFFF;
}
.mainFormAndOutput {
display: inline;
overflow: auto;
}
/* Change the style of the popover to match Bootstrap button-danger style */
.popover, .popover-content {
color: #A94442;
background-color: #F2DEDE;
border-color: #A94442 !important;
background-image: -webkit-linear-gradient(top, #F2DEDE 0%, #E7C3C3 100%);
background-image: linear-gradient(to bottom, #F2DEDE 0%, #E7C3C3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
}
/* Since each arrow (arrow that appears if the popover is
* top, bottom, left or right) needs to be formatted
* individually, change the style of only the one we are using
*/
.popover.right > .arrow:after {
border-right-color: #A94442 !important;
}