Skip to content

Commit

Permalink
2018100201
Browse files Browse the repository at this point in the history
  • Loading branch information
oormicreations committed Oct 1, 2018
1 parent ebf07af commit 064c823
Show file tree
Hide file tree
Showing 32 changed files with 1,002 additions and 22,450 deletions.
876 changes: 468 additions & 408 deletions PredictEd Help/help.html

Large diffs are not rendered by default.

423 changes: 423 additions & 0 deletions PredictEd Help/helpbk.html

Large diffs are not rendered by default.

Binary file added PredictEd Help/images/aes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PredictEd Help/images/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified PredictEd Help/images/setCapture.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PredictEd Help/images/sha512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PredictEd Help/images/spell.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified PredictEd Help/images/ssCapture.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PredictEd Help/images/steg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
156 changes: 39 additions & 117 deletions PredictEd Help/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,88 +31,89 @@ a:visited {
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration: none;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */

.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 700px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */

.header {
height:170px;
background: #E8E8E8;
background: -webkit-linear-gradient(#E8E8E8, #ffffff);
background: -moz-linear-gradient(#E8E8E8, #ffffff);
background: linear-gradient(#E8E8E8, #ffffff);
/* [disabled]padding-left: 30px;
*/
position: relative;
border-bottom: 2px dotted #888;
border-top: 2px dotted #888;
}
/* ~~ These are the columns for the layout. ~~

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
}

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
.b2blogo {
float:left;
padding-left: 20px;
}

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
.b2btitle {
float:right;
font-size: 42px;
padding-right: 60px;
padding-top:40px;
}

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
.b2bsubtitle {
clear:right;
float:right;
font-size: 24px;
padding-right: 60px;
}

*/
.sidebar1 {
.sidebar {
clear:both;
float: left;
width: 20%;
height: 2000px;
min-width: 180px;
height: auto;
background: #E8E8E8;
background: -webkit-linear-gradient(#E8E8E8, #ffffff);
background: -moz-linear-gradient(#E8E8E8, #ffffff);
background: linear-gradient(#E8E8E8, #ffffff);
/*background-color: -webkit-linear-gradient(#E8E8E8, #ffffff);*/
/*padding-bottom: 10px;*/
/* [disabled]height: 100%;
*/
min-width: 150px;
bottom: 0px;
word-wrap:break-word;
}

.content {
padding: 10px 0;
width: 80%;
float: left;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
float:right;
width:75%;
/* background: #E8E8E0;*/
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */

ul.nav {
background: #E8E8E8;
background: #E8E8E8;
background: -webkit-linear-gradient(#E8E8E8, #ffffff);
background: -moz-linear-gradient(#E8E8E8, #ffffff);
background: linear-gradient(#E8E8E8, #ffffff);

list-style: none; /* this removes the list marker */
/* [disabled]border-top: 2px dotted #888;
*/ /* this creates the top border for the links - all others are placed using a bottom border on the LI */
/* [disabled]border-top: 2px dotted #888;*/ /* this creates the top border for the links - all others are placed using a bottom border on the LI */
margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}

ul.nav li {
border-bottom: 2px dotted #888;
}

ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
padding: 5px 5px 5px 15px;
padding: 5px 5px 5px 5px;
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
text-decoration: none;
/* [disabled]background-color: #D5D5D5; */
color: #000;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
background-color: #bbb;
color: #414141;
}
/* ~~ The footer ~~ */

.footer {
padding: 10px 0;
background: #E8E8E8;
Expand All @@ -126,95 +127,16 @@ ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background
border-top: 2px dotted #888;
border-bottom: 2px dotted #888;
}
.b2bcontent {

display: block;
padding-left: 10px;
padding-top: 30px;
/* [disabled]height: 800px; */
}
.b2bcover {
background-color: #ABABAB;
text-align: center;
display: block;
float: left;
padding-left: 30px;
}
.b2bdetail {
.noticebox {
background-color: #DDDDD9;
text-align: left;
display: block;
/*float: right;*/
padding-left: 15px;
padding-right: 15px;
padding-bottom: 5px;
padding-top: 15px;
font-size: 12pt;
border-radius: 7px;
/*border: 1px solid #666;*/
width: 70%;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
clear: both;
height: 0;
font-size: 1px;
line-height: 0px;
}
.b2blogo {
display: block;
/* [disabled]float: left;
*/
/* [disabled]text-align: right;
*/
position: relative;
top: 0px;
left: 0px;
width: 30%;
padding-left: 20px;
}
.b2btitle {
font-size: 42px;
/* [disabled]text-align: left;
*/
/* [disabled]display: block;
*/
/* [disabled]padding-right: 30px;
*/
/* [disabled]padding-top: 20px;
*/
position: absolute;
top: 6px;
left: 397px;
bottom: 0px;
right: 0px;
width: 270px;
/* [disabled]background-color: #939393;
*/
height: 70px;
}
.b2bsubtitle {
font-size: 24px;
/* [disabled]text-align: left;
*/
/* [disabled]vertical-align: middle;
*/
/* [disabled]display: block;
*/
top: 134px;
position: absolute;
bottom: 10%;
right: 2px;
/* [disabled]background-color: #545454;
*/
width: 271px;
height: 40px;
}

4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Arabic.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Arabic
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Arabic
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\ArabicDict.txt
Knowledge Dir,Arabic
Dictionary File,ArabicDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Biology.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Biology
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Biology
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,Biology
Dictionary File,DefaultDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Business.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Business
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Business
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,Business
Dictionary File,DefaultDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Chinese.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Chinese
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Chinese
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\ChineseDict.txt
Knowledge Dir,Chinese
Dictionary File,ChineseDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Default.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Default
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Default
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,Default
Dictionary File,DefaultDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/French.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,French
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\French
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,French
Dictionary File,FrenchDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/German.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,German
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\German
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\GermanDict.txt
Knowledge Dir,German
Dictionary File,GermanDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Hindi.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Hindi
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Hindi
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\HI-IN\hi-in2.txt
Knowledge Dir,Hindi
Dictionary File,hi-in2.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Marathi.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Marathi
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Marathi
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\MarathiDict.txt
Knowledge Dir,Marathi
Dictionary File,MarathiDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Philosophy.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Philosophy
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Philosophy
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,Philosophy
Dictionary File,DefaultDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Physics.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Physics
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Physics
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,Physics
Dictionary File,DefaultDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Psychology.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Psychology
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Psychology
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\Default\DefaultDict.txt
Knowledge Dir,Psychology
Dictionary File,DefaultDict.txt
4 changes: 2 additions & 2 deletions PredictEd User Folder/Contexts/Russian.context
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PredictEd Context File Version,11
Context Name,Russian
Knowledge Dir,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Contexts\Russian
Dictionary File,C:\Users\Sanjeev\Documents\Oormi Creations\PredictEd 1.1.0\Dictionary\RussianDict.txt
Knowledge Dir,Russian
Dictionary File,RussianDict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19998,3 +19998,37 @@ plotting
yan
succeeding
bizjournalshire
witnessing
conveyed
imaginations
mentations
emptiness
changeless
experiencer
debilitating
looped
irrational
affliction
overpowers
negativity
impulses
tendencies
desiring
fearing
contentment
momentary
untrained
egoic
discourage
stupidity
deceit
multiplies
impulsive
compulsive
mastered
incapable
wakes
terminates
rids
yogis
werein
Loading

0 comments on commit 064c823

Please sign in to comment.