snow10/theme.css

77 lines
1.7 KiB
CSS
Executable File

/*
Snow10 - Whitespace steganography. electronic invisible ink.
Copyright (C) 2021 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/>.
*/
h1, p, label{
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
textarea{
width: 35%;
height: 10em;
}
.encode{
margin-top: 2em;
display: block;
}
input[type="submit"]{
display: block;
margin-top: 2em;
}
@media only screen and (max-width: 1000px) {
textarea{
width: 75%;
}
}
input[type="submit"] {
margin-top: 5em;
box-shadow:inset 0px 1px 3px 0px #91b8b3;
background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
background-color:#768d87;
border-radius:5px;
border:1px solid #566963;
display:block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:11px 23px;
text-decoration:none;
text-shadow:0px -1px 0px #2b665e;
}
input[type="submit"]:hover {
background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
background-color:#6c7c7c;
}
input[type="submit"]:active {
position:relative;
top:1px;
}
.container{
margin-left: 2em;
}
.decode{
display: none;
}