diff options
| author | mcd223 <jacob@simplelittledream.com> | 2019-02-07 19:38:42 -0500 |
|---|---|---|
| committer | mcd223 <jacob@simplelittledream.com> | 2019-02-07 19:38:42 -0500 |
| commit | 5552ce957b496dd4f0b8447dbfbf8718fbd1f2a7 (patch) | |
| tree | 50243c695dfb3252fde70254e50087e54044583e /CSS/old.css | |
redesign 3
Diffstat (limited to 'CSS/old.css')
| -rw-r--r-- | CSS/old.css | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/CSS/old.css b/CSS/old.css new file mode 100644 index 0000000..dedd69c --- /dev/null +++ b/CSS/old.css @@ -0,0 +1,135 @@ +/*CSS for Everything*/ +body{ + background-color:#323232; + font-family:Arial; + color:white; +} +span{ + color:white; + font-size:30px; + cursor:pointer; +} +.sidenav { + height: 100%; + width: 0; + position: fixed; + z-index: 1; + top: 0; + left: 0; + background-color: #111; + overflow-x: hidden; + transition: 0.5s; + padding-top: 60px; +} +.sidenav a { + padding: 8px 8px 8px 32px; + text-decoration: none; + font-size: 15px; + color: #818181; + display: block; + transition: 0.3s; +} +.sidenav a:hover, .offcanvas a:focus{ + color: #f1f1f1; +} +.sidenav .closebtn { + position: absolute; + top: 0; + right: 25px; + font-size: 25px; + margin-left: 50px; +} +/*CSS for Main Page*/ +img.logo{ + height:100px; + width:605px; + margin-left: auto; + margin-right: auto; + display: block; + padding-bottom:5px; +} +div.main{ + text-align:center; + width:100%; +} +/*Uncomment code below if using old search method*/ +/*.searchForm{ + border-radius:5px; + background-color:#262626; + color:white; + border: none; + font-size: 16px; +} +.searchForm:hover{ + background-color:#1a1a1a; +} +.searchButton{ + color:white; + background-color:#262626; + border-radius:5px; + border-color:#404040; +} +.searchButton:hover{ + background-color:#1a1a1a; +}*/ +.search{ + width:605px; + border-radius: 5px; + border-color:#404040; + background-color:#262626; + color:white; + font-size: 16px; + background-image:url('Images/LOGO_Transparent.png'); + background-repeat: no-repeat; + padding: 12px 20px 12px; + -webkit-transition: width 0.4s ease-in-out; + transition: width 0.4s ease-in-out; +} +.search:focus { + width: 90%; + border-color:#1a1a1a; +} +/*CSS fo Binary Page*/ +textarea.inputBinary{ + resize: none; + border-radius: 5px; + background-color: #262626; + border-color: #404040; + color: white; + width: 90%; +} +textarea.inputBinary:focus{ + background-color: #1a1a1a; +} +textarea.outputBinary{ + resize: none; + border-radius: 5px; + background-color: #262626; + border-color: #404040; + color: white; + width: 90%; +} +textarea.outputBinary:focus{ + background-color: #1a1a1a; +} +/*CSS for Morse Code page*/ +textarea.morse{ + width: 70%; + background-color: #262626; + color: white; + border-color: #404040; + border-radius: 5px; + resize: none; +} +textarea.morse:focus{ + background-color: #1a1a1a; +} +input.morse{ + background-color: #262626; + color: white; + border-color: #404040; + border-radius: 5px; +} +input.morse:focus{ + background-color: #1a1a1a; +}
\ No newline at end of file |
