2017-04-02 03:50:28 +00:00
|
|
|
/*
|
|
|
|
Snow10 - Whitespace steganography. electronic invisible ink.
|
|
|
|
Copyright (C) 2017 Kevin Froman https://ChaosWebs.net/
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
2016-05-28 04:34:52 +00:00
|
|
|
body
|
|
|
|
{
|
|
|
|
background-color: #d8d8d8;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
.center
|
|
|
|
{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dataArea
|
|
|
|
{
|
|
|
|
margin-left: 3em;
|
|
|
|
margin-right: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#text
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-height: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#one
|
|
|
|
{
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataItem
|
|
|
|
{
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer
|
|
|
|
{
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#copyFeedback
|
|
|
|
{
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2017-03-28 16:40:00 +00:00
|
|
|
}
|
2017-03-31 03:42:02 +00:00
|
|
|
|
|
|
|
#outputDecode, #copyFeedback{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#outputDecode{
|
|
|
|
overflow: scroll;
|
2017-04-02 03:50:28 +00:00
|
|
|
}
|