diff --git a/css/electrum.css b/css/electrum.css index f926dda..0112bfa 100644 --- a/css/electrum.css +++ b/css/electrum.css @@ -1,718 +1,831 @@ -@font-face { - font-family: 'Nobile'; - font-style: normal; - font-weight: normal; - src: local('Nobile'), url('nobile.ttf') format('truetype'); +/* General Styles */ +html { + scroll-padding-top: 6em; } body { margin: 0; padding: 0; font-size: 100%; - background: #222222; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - line-height:1.5; + background: #000000; + font-family: 'Montserrat', sans-serif; + min-height: 100vh; + position: relative; } -/* -table { - font-family: 'Nobile', Arial, sans-serif; - font-size: 13px; -}*/ - a img { border: none; } + a { + cursor: pointer; text-decoration: none; outline: 0; - color: #0099ff; -} -a:focus { - color: #77ccff; -} -a:hover { - color: #77ccff; -} -a:active { - color: #77ccff; + color: #0679FF; } -a.selected{ - text-decoration:underline !important; -} - - -.downloads a { - color:#112277; -} -.downloads a:focus { - color: #0099ff; -} -.downloads a:hover { - color: #0099ff; +.warning_text { + background: #001630; + font-weight: 500; + margin-top: 10px; + line-height: 130%; + font-size: 0.8em; + text-align: center; + padding: 2% 2% 2% 2%; } - -/** Layout - */ #content { - background: #113344; - color: #dddddd; -} - -.features a{ color: #ffffff; + margin: 0 5% 5% 5%; } - -.wrapper { - margin: 0 auto; - width: 940px; - clear: left; +.btn { + border: 2px solid #0679FF; + background-color: #000000; + color: #0679FF; + padding: 10px 28px; + font-size: 15px; + cursor: pointer; + border-radius: 100px; + letter-spacing: 0.1em; + margin: 5% 0 5% 0; + outline:none; } -.clear { - clear: both; +.btn:hover { + background-color:rgba(6, 121, 255, 0.08); } - -pre, code, tt { - /*font: 1em "andale mono", "lucida console", monospace;*/ - /*line-height: 1.5;*/ - //background: #fff; - //color: #00000; +li { + padding-top: 10px; } - -/** Header - */ -#header { - height: 100px; - background: #222222; - color:#ffffff; - background: -webkit-linear-gradient(#555555, #000000, #000000); /* For Safari 5.1 to 6.0 */ - background: -o-linear-gradient(#555555, #000000, #000000); /* For Opera 11.1 to 12.0 */ - background: -moz-linear-gradient(#555555, #000000, #000000); /* For Firefox 3.6 to 15 */ - background: linear-gradient(#555555, #222222, #222222); +/* Header Styles */ +#headerWrapper { + overflow: hidden; + position: sticky; + background: #000000; } - -#logo { - padding: 15px 0px; - float: left; - width: 380px; - line-height:1.5; +#headerWrapper #nav_links { + display: none; } -#electrum_text { - width:300px; - height:45px; - display:block; - background:url(../logo/electrum_text.png) no-repeat 0 0; - background-image: -webkit-image-set( url(../logo/electrum_text.png) 1x, url(../logo/electrum_text.png) 2x); - background-size:300px 42px; +#nav_links a { + color: white; + font-weight: 300; } -#electrum_text span, #electrum_logo img { position:absolute; top:100%; left:-99999px; } - -#logo_subtitle { - font-weight:300; - font-size:100%; - color: #5588ff; - +#nav_links li { + padding-top: 10%; } - + #electrum_logo { - width:70px; - height:66px; - display:block; - float:right; - background:url(../logo/electrum_logo.png) no-repeat 0 0; - background-image: -webkit-image-set( url(../logo/electrum_logo.png) 1x, url(../logo/electrum_logo.png) 2x); - background-size:70px 66px; + height: 3em; + margin: 5% 0 0 8%; } - - -#menu { - font-size: 90%; - float:right; - //margin-bottom:-20px; +#hamburger_icon { + display: block; + font-size: 2em; + position: absolute; + right: 0; + top: 0; + color: white; + margin: 6% 8% 0 0; } - - -ul.navigation { - //margin-top: 55px; - //margin-bottom:2px; - float: right; - list-style-type: none; +.sticky { + position: fixed; + top: 0; + width: 100%; } -ul.navigation li { - float: left; - list-style-type: none; - line-height: 30px; - height: 30px; +/* General tab styles */ +.tablinks { + font-size: 0.3em; + font-weight: 400; + color: #ffffff; + cursor: pointer; + padding-bottom: 5px; } -ul.navigation li a { - float: left; - margin-left: 20px; +.underline_active { + border-bottom: 2px solid #0679FF; + width: fit-content; } - - -/** Social toolbar - */ -#social-icons { - margin-top: 10px; - float:right; +.tab_content { + margin: 0; + flex-direction: column; } -#social a, #social img { - border: 0; +/* General Panel Styles */ +.panel_wrapper { + margin: 1% 5% 0% 5%; + min-height: 50vh; } - -/* -h1, h2, h3, h4, h5 { - font-family: 'Open Sans', sans-serif; - font-weight: 300; - font-size: 26px; - color: #333; +.panel, :target ~ .default { + display: none; } -*/ - -h2 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; - font-weight:normal; -} -h3 { - font-size: 1.2em; - line-height: 1; - margin-bottom: 1.00em; - font-weight:normal; +.default, :target { + display: flex; + flex-direction: column; + align-content: center; + justify-content: space-between; } -#footer { - padding-top: 20px; - padding-bottom: 20px; - color: #ddd; - font-size: 90%; +.panel_title { + font-size: 2em; + font-weight: 600; } -#footer a, -#header a { - text-decoration: none; - color:#ffffff; - visited-color:#cccccc; +/* Home Panel Styles */ +#electrum_blue_logo_text { + width: 80vw; + z-index: -1; } -#footer a:hover, -#header a:hover { - color: #ddd; +#Electrum_title { + display: flex; + flex-direction: column; + margin: 20% 0 20% 0; + align-items: center; } -#footer p { - margin: 0 5px; +.title_subtext { + display: flex; + flex-direction: column; + align-items: center; + margin-top: 4%; + text-align: center; + letter-spacing: 0.1em; } -#footer .col1 { - width: 470px; - float: left; -} -#footer .col2 { - width: 470px; - text-align: right; - float: left; +.title_subtext h1 { + font-weight: 600; + font-size: 4vw; + } -.hl { - font-weight: bold; - font-size: 15px; +.title_subtext h2 { + font-weight: 200; + font-size: 3.5vw; } -.bigger { - font-size: 120%; +#download_button { + width: 50vw; } -hr { - height: 1px; - border: 0; - background-color: #aaa; +.feature_header { + margin: 0; + padding: 10% 0 0 0; + font-size: 5vw; + font-weight: 600; + color: #0679ff; } -/** contest 2014 - */ - -.partners, -.sponsors { - float: right; - width: 250px; - margin-left: 20px; - clear: both; +.home_panel_section { + margin: 0 5% 20% 0; } -.partners img, -.sponsors img { - width: 100%; +.home_panel_section h1 { + line-height: 140%; + font-size: 9vw; + font-weight: 600; } -.contest { - margin-right: 280px; +.home_panel_section img { + width: 70vw; } -/** lightbox - */ -.pp_social { - display: None; +/* Title Flicker Animation Styles */ +@keyframes flickerAnimation { + 0% { opacity:1; } + 50% { opacity:0.6; } + 100% { opacity:1; } } - -/** Slideshow - */ - -.slideshow { - width: 940px; - height: 400px; - overflow: hidden; - margin-top: 47px; - background-color: black; - //position: absolute; +@-o-keyframes flickerAnimation{ + 0% { opacity:1; } + 50% { opacity:0.6; } + 100% { opacity:1; } } - - -.slideshow .caption { - position: absolute; - margin-left: 50px; - margin-top: 50px; - padding: 10px 20px; - color: #f8f8f8; - background-color: #101010; - opacity: 0.8; -} - -.slideshow .caption h3 { - color: #f8f8f8; - font-family: 'Open Sans', sans-serif; - font-size: 22px; - margin: 0; - padding: 0; -} - -.slideshow .caption p { - font-family: Nobile, Arial, sans-serif; +@-moz-keyframes flickerAnimation{ + 0% { opacity:1; } + 50% { opacity:0.6; } + 100% { opacity:1; } } - -.slideshow .caption a { - text-decoration: none; - color: #b0b0b0; +@-webkit-keyframes flickerAnimation{ + 0% { opacity:1; } + 50% { opacity:0.6; } + 100% { opacity:1; } } -.slideshow .caption a:hover { - color: #ffffff; -} +.animate-flicker { + -webkit-animation: flickerAnimation 0.3s linear infinite; + -moz-animation: flickerAnimation 0.3s linear infinite;; + -o-animation: flickerAnimation 0.3s linear infinite;; + animation: flickerAnimation 0.3s linear infinite;; +} -/** Panel - */ -.panel { - padding: 1px 0 30px 0; +/* Download Panel Styles */ +#download_tab { display: none; } -/** Home page - */ - -.description{ - text-align:center; -} - -#subtitle { - margin:auto; - width:640px; - height:30px; - display:block; - /*background:url(../logo/theway.png) no-repeat 0 0;*/ - /*background-image: -webkit-image-set( url(../logo/theway.png) 1x, url(../logo/theway.png) 2x);*/ - background-size:634px 30px; - margin-top:60px; - margin-bottom:60px; +#mobile_view_download { + display: flex; + flex-direction: column; + margin: 10% 0 10% 0; } - -.button { - font-size:1.5em; - padding: 10px 30px; - color:#fff; - background-color:#3468bb; - font-weight:300; - text-decoration:none; - border-radius:6px; +#mobile_view_download_set { + display: flex; + flex-direction: column; + margin: 5% 0 0 0; } -.button:visited { color:#fff; } -.button:hover, .button:active, .button:focus { color:#fff; text-decoration:underline; } -.button:active { position:relative; top:1px; } - - - -div.featured-space { - height: 60px; +#signature { + letter-spacing: 0.1em; + font-weight: 400; + font-size: 0.8em; } - -h2.icon { - background-position: 0px 0px; - background-repeat: no-repeat; - padding-left: 60px; - padding-top: 30px; - line-height: 24px; - height: 64px; +#latest_release{ + margin: 0; + font-size: 1em; } -h2.icon-seed { - background-image: url('../icons/features/neg_icon_seed.png'); -} -h2.icon-safe { - background-image: url('../icons/features/neg_icon_box.png'); -} -h2.icon-exit { - background-image: url('../icons/features/neg_icon_exit.png'); -} -h2.icon-clock { - background-image: url('../icons/features/neg_icon_clock.png'); -} -h2.icon-blitz { - background-image: url('../icons/features/neg_icon_blitz.png'); +#release_links { + margin-top: 1%; + margin-bottom: 3%; + font-size: 0.9em; } -h2.icon-spv { - background-image: url('../icons/features/neg_icon_shield.png'); -} -h2.icon-multisig { - background-image: url('../icons/features/neg_icon_multisig.png'); -} -h2.icon-cold { - background-image: url('../icons/features/neg_icon_cold.png'); -} -h2.icon-plugins { - background-image: url('../icons/features/neg_icon_round.png'); -} - -/*open source. twofactor. */ -.features { - clear: both; +#Mobile, #Desktop, #CLI { + display: none; } - -.features p { - margin-top: -50px; - //margin-bottom: -30px; +#faq_note_wrapper { + margin: 1% 5% 0% 5%; } - -.feature-item { - width: 300px; +#faq_note_wrapper p { + font-weight: 300; line-height: 150%; - float: left; - margin-right: 20px; - //background:green; + font-size: 0.8em; } -.feature-item.item-2-col { - width: 610px; -} - -.feature-item.last { - margin-right: 0px; -} - -/** Galery page - */ -.gallery h3 { - margin: 0px; - padding: 5px 0 0 0; - font-size: 20px; -} - -.gallery p { - margin: 5px 0 10px 0; -} - -.gallery-item { - margin-right: 50px; - width: 445px; - float: left; -} - -.gallery-item.right { - margin-right: 0px; -} - -.gallery-clear { - clear: left; - height: 40px; -} - -/** Python highlight - */ - -.highlight pre { - background-color: #f0f0f0; - border: 1px solid #c2c2c2; - padding: 10px; - font-size: 14px; - border-top-left-radius: 15px; - border-bottom-right-radius: 15px; - -moz-border-radius-topleft: 15px; - -moz-border-radius-bottomright: 15px; - -webkit-border-radius-topleft: 15px; - -webkit-border-radius-topright: 15px; -} - -.highlight .k, -.highlight .kn { - font-weight: bold; -} +#note_wrapper p { + font-weight: 300; + line-height: 150%; + font-size: 0.8em; +} */ -.highlight .nc, -.highlight .nf { - color: #af5600; - color: #db6500; -} -/** Downloads - */ -.downloads{ - color:#000000; - background-color:#cccccc; +/* Documentation Panel Styles */ +#documentation_buttons_set { + display: flex; + flex-direction: column; + justify-content: space-between; + width: 52vw; } - -table { - border-collapse: collapse; - border-spacing: 0; - margin-bottom: 1.4em; +#documentation_buttons_set button { width: 100%; + font-size: 0.7em; } - -table.striped tr:nth-child(even) td, -table tr.even td { - background: #113355; -} -table { - border: 0px solid #888888; - border-collapse: separate; -} -td { - border-top: 1px solid #888888; - border-left: 1px solid #888888; -} - -th, td, caption { - padding: 4px 10px 4px 5px; -} - - -div .qrcode{ - border: 10px solid white; - display: inline-block; -} - - -/* -table.downloads { - border-collapse: collapse; - border: 1px solid #ccc; -} - -table.downloads td, -table.downloads th { - text-align: left; - padding: 15px 20px; - border-bottom: 1px solid #ccc; -} - -table.downloads img { - vertical-align: middle; -} - -table.downloads th { - background-color: #e0e0e0; -} - -table.downloads tr.selected td { - background-color: #f0f0f0; -} - -table.downloads tr th.os { - width: 250px; -} -*/ - -/** About - */ - -.clear { - clear: left; +/* Community & About Panel Styles */ +.panel_subtitle { + font-size: 1em; + font-weight: 400; + border-bottom: 2px solid #0679FF; + padding-bottom: 5px; + width: fit-content; } -.devprofile { - float: left; - font-size: 12px; - display: block; - width: 200px; - min-height: 210px; - padding: 10px; - margin: 20px 40px; - border: 1px solid #ccc; +.panel_subsection { + margin: 10% 0 15% 0; + font-size: 0.8em; } -.devprofile .social, -.devprofile .name { - display: block; - text-align: center; - font-family: 'Open Sans', sans-serif; +.panel_subsection ul { + padding: 0 0 0 10%; } -.devprofile .name { - font-size: 18px; -} - -.devprofile .social { - margin-top: 5px; +/* Footer Styles */ +#footer { + position: relative; + bottom: 0; + padding: 0px 0px 20px 0px; + width: 100%; + text-align: center; + left: 0; + color: #ffffff; + font-size: 10%; } -.devprofile a { - color: #ef7600; +#footer a, +#header a { text-decoration: none; + color:#ffffff; } -.devpic { - float: left; - margin-right: 10px; - height: 80px; +.footer_subwrapper { + display: flex; + flex-direction: row; + justify-content: space-between; + margin: 10% 8% 0% 8%; } -dl.aboutus, -dl.aboutus dd { - list-style-type: none; +.internal_links { + display: flex; + flex-direction: column; + text-align: left; + margin-top: 1%; } -dl.aboutus dt { - font-family: 'Open Sans', sans-serif; +.internal_links a { font-weight: 300; - font-size: 20px; - color: #333; -} - -dl.aboutus dd { - margin: 0px; - padding: 0px; -} -ul.devinfo li { - height: 90px; -} - -.devcontact { - margin-top: 10px; -} - -.ircnick { - font-style: italic; + cursor: pointer; + font-size: 6em; + padding-top: 7%; } -ul.talks li { - margin-bottom: 10px; -} - -.pageright { - float: left; - width: 350px; -} - -.pageright h2 { - font-family: 'Open Sans', sans-serif; - font-weight: 300; - font-size: 20px; - color: #333; - margin: 13px 0px; - padding: 0px; -} - -.pageleft { - width: 550px; - float: left; - margin-right: 10px; - padding-right: 10px; - border-right: 1px dotted #888888; -} - -ul.talks { - list-style-type: none; - padding: 0px; - margin: 0px; -} - -ul.talks li { - list-style-type: none; - padding: 0px; - margin: 0px; - padding-left: 70px; - margin-bottom: 15px; -} - -ul.talks li img.preview { - position: absolute; - margin-left: -70px; -} - -/** IE fixes - */ -body { - text-align: center; +#company_info { + display: none; } -.wrapper { - text-align: left; +.footer_wrapper h5 { + margin: 0 0 6% 0; + font-size: 5em; } -/** Changelog - */ -#panel-changelog h3 { - background-color: #eeeeee; - border-bottom: 1px solid #cccccc; - padding: 10px; -} -div.changelog h4 { - font-size: 20px; - margin: 10px 0px; -} -div.changelog h5 { - font-size: 16px; - margin: 10px 0px; +.social_link { + display: flex; + align-items: center; } -/** Social panel in frontscreen - */ -table.social td { - width: 90px; - line-height: 90px; +.social_link img { + width: 4vw; } -/** Logo panel - */ -table.logolist { - width: 100%; -} -table.logolist td { - text-align: center; +.social_link p { + margin: 0; } - - +#external_links { + font-size: 5em; + font-weight: 400; +} + + +/* TABLET VIEW */ +@media only screen and (min-width: 768px) { + /* General Styles */ + .warning_text { + padding: 5px 20px 5px 20px; + margin-top: 20px; + font-size: 1.8vw; + } + + #content { + margin: 0; + } + + li { + padding: 0 0 1% 0; + } + + /* Header Styles */ + #headerWrapper { + display: flex; + background: #000000; + flex-direction: row; + align-items: center; + justify-content: space-between; + padding: 0 6% 0 6%; + height: 6em; + position: sticky; + width: 87%; + } + + #electrum_logo { + height: 4em; + margin-top: 15%; + } + + #headerWrapper #nav_links { + display: flex; + margin-top: 3%; + } + + #nav_links a { + font-weight: 500; + font-size: 1.7vw; + } + + #nav_links li { + display: inline-block; + padding: 25px; + } + + #hamburger_icon { + display: none; + } + + /* General Tab & Panel styles */ + .panel_title { + font-size: 3em; + font-weight: 600; + } + + .panel_wrapper { + margin: 0% 0% 0% 7%; + } + + /* Home Panel Styles */ + + #electrum_blue_logo_text { + height: 5em; + } + + #Electrum_title { + margin: 15% 0 5% 0; + } + + .title_subtext h1 { + font-size: 1.5em; + margin-bottom: 0; + } + + .title_subtext h2 { + font-size: 1em; + } + + .home_panel_section { + margin: 10% 8% 20% 0%; + } + + .home_panel_section h1 { + font-size: 2.5em; + width: 80%; + margin-bottom: 10%; + } + .home_panel_section .tab_content { + display: flex; + align-items: center; + height: 50vh; + width: 40%; + } + + .home_panel_section .tab_content p { + font-size: 0.75em; + line-height: 130%; + font-weight: 400; + text-align: center; + align-content: center; + width: 90%; + } + + .tab_content_wrapper { + display: flex; + flex-direction: row; + } + + .feature_header { + padding: 0; + font-size: 1.5vw; + text-align: center; + font-weight: 700; + } + + .home_panel_section img { + margin: 20% 0 0 0; + width: 17vw; + } + + /* Download Panel Styles */ + #download_tab { + display: flex; + justify-content: space-between; + margin-right: 60%; + } + + .download_type_header { + padding: 0; + font-size: 2.5vw; + text-align: left; + font-weight: 700; + color: #0679FF; + margin-top: 5%; + } + + .download_platform_name { + margin: 3% 0 0 0; + } + + .download_package_name { + margin: 0; + } + + .download_set { + display: flex; + flex-direction: column; + justify-content: space-between; + width: 90%; + text-align: center; + } + + #mobile_view_download { + display: none; + } + + #Mobile, #Desktop, #CLI { + display: flex; + } + + #signature { + letter-spacing: 0.1em; + font-weight: 400; + font-size: 0.8em; + } + + table { + border-collapse: collapse; + border-spacing: 0; + margin-bottom: 1.4em; + width: 100%; + } + + th, td { + padding: 40px 10px 4px 5px; + text-align: left; + } + #android_header { + width: 18%; + } + + .caption { + font-size: 0.7em; + font-weight: 500; + } + + #latest_release{ + margin: 0; + font-size: 2vw; + } + + #release_links { + margin-top: 1%; + margin-bottom: 3%; + font-size: 2vw; + } + + #cli_table { + background: #001630; + width: 90%; + } + + #cli_table th { + padding: 20px 10px 4px 25px; + text-align: left; + font-weight: 600; + } + + #cli_table td { + padding: 35px 10px 20px 0px; + font-weight: 200; + } + + #faq_note_wrapper { + margin: 0 7% 0% 7%; + } + + #faq_note_wrapper p { + font-weight: 400; + line-height: 150%; + font-size: 1.7vw; + } + + /* Documentation Panel Styles */ + #documentation_buttons_set button { + width: 70%; + font-size: 1.7vw; + margin-bottom: 1%; + } + + /* Community & About Panel Styles */ + .panel_subsection { + margin: 5% 0 5% 0; + font-size: 1em; + } + + .panel_subsection ul { + padding: 0 0 0 2%; + } + + /* Footer Styles */ + #footer { + font-size: 60%; + } + + #footer a, + #header a { + text-decoration: none; + color:#ffffff; + } + + .footer_subwrapper { + margin: 3% 8% 0% 8%; + } + + .internal_links { + text-align: left; + } + + .internal_links a { + font-size: 1em; + } + + #company_info { + display: block; + width: 25%; + text-align: left; + font-size: 1em; + font-weight: 400; + line-height: 150%; + } + + #company_info img { + height: 4vh; + margin-bottom: 2%; + } + + .footer_wrapper h5 { + font-size: 0.8em; + } + + #external_links { + font-size: 0.8em; + font-weight: 400; + } +} + +/* DESKTOP VIEW (1024) */ +@media only screen and (min-width: 1024px) { + + /* General Styles */ + .warning_text { + padding: 5px 10px 5px 10px; + font-size: 1.2vw; + } + + /* Header Styles */ + #nav_links a { + font-size: 1vw; + } + + /* Home Panel Styles */ + #Electrum_title { + margin: 11% 0 5% 0; + } + + .title_subtext { + margin-top: 1%; + } + + #download_button { + width: 20vw; + } + + .home_panel_section h1 { + font-size: 2.7em; + width: 65%; + } + .home_panel_section .tab_content { + height: 65vh; + } + + .home_panel_section .tab_content p { + font-size: 1.3vw; + line-height: 150%; + width: 75%; + } + + /* Download Panel Styles */ + + #download_tab { + margin-right: 80%; + } + + .download_type_header { + font-size: 1.5vw; + } + + .download_set { + width: 90%; + } + + #faq_note_wrapper { + margin: 0 10% 0% 10%; + } + + #faq_note_wrapper p { + font-weight: 300; + font-size: 1.2vw; + } + + #latest_release, #release_links { + font-size: 1.4vw; + } + + /* Documentation Styles */ + + #documentation_buttons_set { + display: flex; + justify-content: space-between; + width: 75vw; + } + + #documentation_buttons_set button { + width: 35vw; + font-size: 1.2vw; + } + + /* Community & About Panel Styles */ + .panel_subsection { + font-size: 1.2vw; + } + + /* Footer Styles */ + #footer { + font-size: 80%; + } +} + +/* DESKTOP VIEW (1330) */ +@media only screen and (min-width: 1300px) { + /* General Styles */ + .warning_text { + padding: 5px 200px 5px 200px; + font-size: 1vw; + } + + /* Header Styles */ + #nav_links a { + font-size: 0.8vw; + } + + /* Home Panel Styles */ + .home_panel_section h1 { + font-size: 3.5em; + width: 60%; + } + + .home_panel_section .tab_content p { + font-size: 1.2vw; + width: 70%; + } + + .home_panel_section img { + margin: 20% 0 0 0; + width: 15vw; + } + + /* Download Panel Styles */ + + #download_tab { + margin-right: 80%; + } + + .download_set { + width: 70%; + } + + #latest_release{ + font-size: 1.5vw; + } + + #release_links { + font-size: 1.3vw; + } + + #faq_note_wrapper p { + line-height: 180%; + font-size: 1.2vw; + } + + /* Community & About Panel Styles */ + .panel_subsection { + font-size: 1vw; + } + + /* Footer Styles */ + #footer { + font-size: 90%; + } +} \ No newline at end of file diff --git a/css/nobile.ttf b/css/nobile.ttf deleted file mode 100644 index 70e4b3f..0000000 Binary files a/css/nobile.ttf and /dev/null differ diff --git a/css/prettyPhoto.css b/css/prettyPhoto.css deleted file mode 100644 index 8d762c8..0000000 --- a/css/prettyPhoto.css +++ /dev/null @@ -1 +0,0 @@ -div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}div.pp_default .pp_top .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}div.pp_default .pp_top .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) top left repeat-x}div.pp_default .pp_top .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}div.pp_default .pp_content .ppt{color:#f8f8f8}div.pp_default .pp_content_container .pp_left{background:url(../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}div.pp_default .pp_content_container .pp_right{background:url(../images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}div.pp_default .pp_next:hover{background:url(../images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}div.pp_default .pp_previous:hover{background:url(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}div.pp_default .pp_expand{background:url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}div.pp_default .pp_expand:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}div.pp_default .pp_contract{background:url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}div.pp_default .pp_contract:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}div.pp_default .pp_close{width:30px;height:30px;background:url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}div.pp_default .pp_gallery ul li a{background:url(../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(../images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}div.pp_default .pp_content_container .pp_details{margin-top:5px}div.pp_default .pp_nav{clear:none;height:30px;width:105px;position:relative}div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;font-color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}div.pp_default .pp_bottom .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}div.pp_default .pp_bottom .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}div.pp_default .pp_bottom .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}div.pp_default .pp_loaderIcon{background:url(../images/prettyPhoto/default/loader.gif) center center no-repeat}div.light_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}div.light_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}div.light_rounded .pp_next:hover{background:url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}div.light_rounded .pp_previous:hover{background:url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}div.light_rounded .pp_expand{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}div.light_rounded .pp_expand:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}div.light_rounded .pp_contract{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}div.light_rounded .pp_contract:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}div.light_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}div.light_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}div.light_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}div.light_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}div.light_rounded .pp_arrow_next{background:url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}div.light_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}div.light_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}div.dark_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}div.dark_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}div.dark_rounded .pp_content_container .pp_left{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}div.dark_rounded .pp_content_container .pp_right{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}div.dark_rounded .pp_next:hover{background:url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}div.dark_rounded .pp_previous:hover{background:url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}div.dark_rounded .pp_expand{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}div.dark_rounded .pp_expand:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}div.dark_rounded .pp_contract{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}div.dark_rounded .pp_contract:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}div.dark_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}div.dark_rounded .pp_description{margin-right:85px;color:#fff}div.dark_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}div.dark_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}div.dark_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}div.dark_rounded .pp_arrow_next{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}div.dark_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}div.dark_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}div.dark_rounded .pp_loaderIcon{background:url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}div.dark_square .pp_loaderIcon{background:url(../images/prettyPhoto/dark_square/loader.gif) center center no-repeat}div.dark_square .pp_expand{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}div.dark_square .pp_expand:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}div.dark_square .pp_contract{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}div.dark_square .pp_contract:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}div.dark_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}div.dark_square .pp_nav{clear:none}div.dark_square .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}div.dark_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}div.dark_square .pp_arrow_previous{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}div.dark_square .pp_arrow_next{background:url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}div.dark_square .pp_next:hover{background:url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}div.dark_square .pp_previous:hover{background:url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}div.light_square .pp_expand{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}div.light_square .pp_expand:hover{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}div.light_square .pp_contract{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}div.light_square .pp_contract:hover{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}div.light_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}div.light_square .pp_nav .pp_play{background:url(../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}div.light_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}div.light_square .pp_arrow_previous{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}div.light_square .pp_arrow_next{background:url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}div.light_square .pp_next:hover{background:url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}div.light_square .pp_previous:hover{background:url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}div.facebook .pp_top .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}div.facebook .pp_top .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}div.facebook .pp_top .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}div.facebook .pp_content_container .pp_left{background:url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}div.facebook .pp_content_container .pp_right{background:url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}div.facebook .pp_expand{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}div.facebook .pp_expand:hover{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}div.facebook .pp_contract{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}div.facebook .pp_contract:hover{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}div.facebook .pp_close{width:22px;height:22px;background:url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}div.facebook .pp_description{margin:0 37px 0 0}div.facebook .pp_loaderIcon{background:url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat}div.facebook .pp_arrow_previous{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}div.facebook .pp_arrow_next{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}div.facebook .pp_nav{margin-top:0}div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}div.facebook .pp_nav .pp_play{background:url(../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}div.facebook .pp_nav .pp_pause{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}div.facebook .pp_next:hover{background:url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}div.facebook .pp_previous:hover{background:url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}div.facebook .pp_bottom .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}div.facebook .pp_bottom .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}div.facebook .pp_bottom .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}div.pp_pic_holder a:focus{outline:none}div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px}.pp_description{display:none;margin:0}.pp_social{float:left;margin:7px 0 0}.pp_social .facebook{float:left;position:relative;top:-1px;margin-left:5px;width:55px;overflow:hidden}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;margin:2px 4px}.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{float:left;overflow:hidden;position:relative}.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}.pp_gallery li.default a{background:url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}a.pp_next{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}a.pp_previous{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}#pp_full_res{line-height:1!important}#pp_full_res .pp_inline{text-align:left}#pp_full_res .pp_inline p{margin:0 0 15px}div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}.pp_top,.pp_bottom{height:20px;position:relative}* html .pp_top,* html .pp_bottom{padding:0 20px}.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}.pp_fade,.pp_gallery li.default a img{display:none} \ No newline at end of file diff --git a/css/sprites.css b/css/sprites.css deleted file mode 100644 index af74518..0000000 --- a/css/sprites.css +++ /dev/null @@ -1,35 +0,0 @@ -.icon-facebook, .icon-github, .icon-gplus, .icon-twitter, .icon-youtube{ - background: url(sprites.png) no-repeat; - display: inline-block; -} - -.icon-facebook{ - background-position: -76px 0; - width: 24px; - height: 24px; -} - -.icon-github{ - background-position: -51px 0; - width: 24px; - height: 24px; -} - -.icon-gplus{ - background-position: -24px 0; - width: 24px; - height: 24px; -} - -.icon-twitter{ - background-position: -100px 0; - width: 24px; - height: 24px; -} - -.icon-youtube{ - background-position: 0 0; - width: 24px; - height: 24px; -} - diff --git a/css/sprites.png b/css/sprites.png deleted file mode 100644 index aca3d30..0000000 Binary files a/css/sprites.png and /dev/null differ diff --git a/download.html b/download.html index 8733fe4..66038c0 100644 --- a/download.html +++ b/download.html @@ -12,4 +12,4 @@ If you are not redirected automatically, follow this link - + \ No newline at end of file diff --git a/favicon.ico b/favicon.ico deleted file mode 100644 index 3b4d53a..0000000 Binary files a/favicon.ico and /dev/null differ diff --git a/icons/android_icon.png b/icons/android_icon.png deleted file mode 100644 index 14ab0ae..0000000 Binary files a/icons/android_icon.png and /dev/null differ diff --git a/icons/android_icon.svg b/icons/android_icon.svg new file mode 100644 index 0000000..f29b086 --- /dev/null +++ b/icons/android_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/features/icon_blitz.png b/icons/features/icon_blitz.png deleted file mode 100644 index d127e94..0000000 Binary files a/icons/features/icon_blitz.png and /dev/null differ diff --git a/icons/features/icon_box.png b/icons/features/icon_box.png deleted file mode 100644 index 9de529d..0000000 Binary files a/icons/features/icon_box.png and /dev/null differ diff --git a/icons/features/icon_clock.png b/icons/features/icon_clock.png deleted file mode 100644 index 3efe7ed..0000000 Binary files a/icons/features/icon_clock.png and /dev/null differ diff --git a/icons/features/icon_cold.png b/icons/features/icon_cold.png deleted file mode 100644 index dcc57f4..0000000 Binary files a/icons/features/icon_cold.png and /dev/null differ diff --git a/icons/features/icon_exit.png b/icons/features/icon_exit.png deleted file mode 100644 index b595ec9..0000000 Binary files a/icons/features/icon_exit.png and /dev/null differ diff --git a/icons/features/icon_lock.png b/icons/features/icon_lock.png deleted file mode 100644 index 3c10bbd..0000000 Binary files a/icons/features/icon_lock.png and /dev/null differ diff --git a/icons/features/icon_multisig.png b/icons/features/icon_multisig.png deleted file mode 100644 index ba02fb9..0000000 Binary files a/icons/features/icon_multisig.png and /dev/null differ diff --git a/icons/features/icon_round.png b/icons/features/icon_round.png deleted file mode 100644 index e162642..0000000 Binary files a/icons/features/icon_round.png and /dev/null differ diff --git a/icons/features/icon_seed.png b/icons/features/icon_seed.png deleted file mode 100644 index 2067d62..0000000 Binary files a/icons/features/icon_seed.png and /dev/null differ diff --git a/icons/features/icon_shield.png b/icons/features/icon_shield.png deleted file mode 100644 index 705e91a..0000000 Binary files a/icons/features/icon_shield.png and /dev/null differ diff --git a/icons/features/neg_icon_blitz.png b/icons/features/neg_icon_blitz.png deleted file mode 100644 index 98451eb..0000000 Binary files a/icons/features/neg_icon_blitz.png and /dev/null differ diff --git a/icons/features/neg_icon_box.png b/icons/features/neg_icon_box.png deleted file mode 100644 index ce2d10f..0000000 Binary files a/icons/features/neg_icon_box.png and /dev/null differ diff --git a/icons/features/neg_icon_clock.png b/icons/features/neg_icon_clock.png deleted file mode 100644 index 6460128..0000000 Binary files a/icons/features/neg_icon_clock.png and /dev/null differ diff --git a/icons/features/neg_icon_cold.png b/icons/features/neg_icon_cold.png deleted file mode 100644 index 402050b..0000000 Binary files a/icons/features/neg_icon_cold.png and /dev/null differ diff --git a/icons/features/neg_icon_exit.png b/icons/features/neg_icon_exit.png deleted file mode 100644 index 2d71a57..0000000 Binary files a/icons/features/neg_icon_exit.png and /dev/null differ diff --git a/icons/features/neg_icon_lock.png b/icons/features/neg_icon_lock.png deleted file mode 100644 index 723a8cf..0000000 Binary files a/icons/features/neg_icon_lock.png and /dev/null differ diff --git a/icons/features/neg_icon_multisig.png b/icons/features/neg_icon_multisig.png deleted file mode 100644 index 44accfa..0000000 Binary files a/icons/features/neg_icon_multisig.png and /dev/null differ diff --git a/icons/features/neg_icon_round.png b/icons/features/neg_icon_round.png deleted file mode 100644 index d92a107..0000000 Binary files a/icons/features/neg_icon_round.png and /dev/null differ diff --git a/icons/features/neg_icon_seed.png b/icons/features/neg_icon_seed.png deleted file mode 100644 index b5cde7d..0000000 Binary files a/icons/features/neg_icon_seed.png and /dev/null differ diff --git a/icons/features/neg_icon_shield.png b/icons/features/neg_icon_shield.png deleted file mode 100644 index fb76b6f..0000000 Binary files a/icons/features/neg_icon_shield.png and /dev/null differ diff --git a/icons/github.svg b/icons/github.svg new file mode 100644 index 0000000..832627d --- /dev/null +++ b/icons/github.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/iconSweets.png b/icons/iconSweets.png deleted file mode 100644 index c698a18..0000000 Binary files a/icons/iconSweets.png and /dev/null differ diff --git a/icons/icons_sprite_electrum.png b/icons/icons_sprite_electrum.png deleted file mode 100644 index 175feb0..0000000 Binary files a/icons/icons_sprite_electrum.png and /dev/null differ diff --git a/icons/linux_icon.svg b/icons/linux_icon.svg new file mode 100644 index 0000000..0c97f90 --- /dev/null +++ b/icons/linux_icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/os_apple.png b/icons/os_apple.png deleted file mode 100644 index 571e6e7..0000000 Binary files a/icons/os_apple.png and /dev/null differ diff --git a/icons/os_linux.gif b/icons/os_linux.gif deleted file mode 100644 index ba79836..0000000 Binary files a/icons/os_linux.gif and /dev/null differ diff --git a/icons/os_ubuntu.gif b/icons/os_ubuntu.gif deleted file mode 100644 index e70c48f..0000000 Binary files a/icons/os_ubuntu.gif and /dev/null differ diff --git a/icons/os_windows.gif b/icons/os_windows.gif deleted file mode 100644 index b9e9e88..0000000 Binary files a/icons/os_windows.gif and /dev/null differ diff --git a/icons/osx_icon.svg b/icons/osx_icon.svg new file mode 100644 index 0000000..52a07dc --- /dev/null +++ b/icons/osx_icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/python_icon.svg b/icons/python_icon.svg new file mode 100644 index 0000000..9ba0ce9 --- /dev/null +++ b/icons/python_icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tar-gz.png b/icons/tar-gz.png deleted file mode 100644 index 78a0240..0000000 Binary files a/icons/tar-gz.png and /dev/null differ diff --git a/icons/twitter.svg b/icons/twitter.svg new file mode 100644 index 0000000..e43e5f2 --- /dev/null +++ b/icons/twitter.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/unused/icon_eye.png b/icons/unused/icon_eye.png deleted file mode 100644 index a48a5e9..0000000 Binary files a/icons/unused/icon_eye.png and /dev/null differ diff --git a/icons/unused/icon_leaves.png b/icons/unused/icon_leaves.png deleted file mode 100644 index 6863309..0000000 Binary files a/icons/unused/icon_leaves.png and /dev/null differ diff --git a/icons/unused/icon_multisig_big.png b/icons/unused/icon_multisig_big.png deleted file mode 100644 index 9a152f0..0000000 Binary files a/icons/unused/icon_multisig_big.png and /dev/null differ diff --git a/icons/windows_icon.svg b/icons/windows_icon.svg new file mode 100644 index 0000000..b92421a --- /dev/null +++ b/icons/windows_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/images/24hours.svg b/images/24hours.svg new file mode 100644 index 0000000..750b4f8 --- /dev/null +++ b/images/24hours.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/images/cold_storage.svg b/images/cold_storage.svg new file mode 100644 index 0000000..6af327a --- /dev/null +++ b/images/cold_storage.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/images/decentralized.svg b/images/decentralized.svg new file mode 100644 index 0000000..8432310 --- /dev/null +++ b/images/decentralized.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/fast.svg b/images/fast.svg new file mode 100644 index 0000000..879af53 --- /dev/null +++ b/images/fast.svg @@ -0,0 +1,4 @@ + + + + diff --git a/images/forgiving.svg b/images/forgiving.svg new file mode 100644 index 0000000..aa7a740 --- /dev/null +++ b/images/forgiving.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/images/hardware.svg b/images/hardware.svg new file mode 100644 index 0000000..d7afaab --- /dev/null +++ b/images/hardware.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/images/multisig.svg b/images/multisig.svg new file mode 100644 index 0000000..b6e4948 --- /dev/null +++ b/images/multisig.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/images/no_lockin.svg b/images/no_lockin.svg new file mode 100644 index 0000000..9a69105 --- /dev/null +++ b/images/no_lockin.svg @@ -0,0 +1,4 @@ + + + + diff --git a/images/tfa.svg b/images/tfa.svg new file mode 100644 index 0000000..488f67c --- /dev/null +++ b/images/tfa.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/images/verifiable.svg b/images/verifiable.svg new file mode 100644 index 0000000..182af8b --- /dev/null +++ b/images/verifiable.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/index.html b/index.html index f982ad6..90efa55 100644 --- a/index.html +++ b/index.html @@ -2,294 +2,354 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - Electrum Bitcoin Wallet - - - - + Electrum Bitcoin Wallet + + + + + + + + + + + + + + + - - - - - - - - - - - - - - -