Skip to content

Commit

Permalink
DOC: slimcoin.club via archive.org, updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham Higgins committed Dec 12, 2017
1 parent 72bec35 commit 4020346
Show file tree
Hide file tree
Showing 10 changed files with 31,455 additions and 0 deletions.
Binary file added doc/slimcoin.club/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions doc/slimcoin.club/dcrypt.min.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
function Hash(e){return sha256_digest(e)}function mix_hashed_nums(e){tmp_list="ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ";ret_list=[];hashed_end=false;index=0;var t;while(hashed_end==false){if(ret_list.length>sLimit)return false;t=parseInt(e[index],16)+1;index+=t;if(index>=64){index%=64;e=Hash(e)}tmp_val=e[index];tmp_list+=tmp_val;tmp_list=Hash(tmp_list);if(index==63)if(tmp_val==tmp_list[63])hashed_end=true;ret_list.push(tmp_list)}return ret_list.join("")}function dcrypt(e){hashedData=Hash(e);result=mix_hashed_nums(hashedData);if(result==false)return false;return Hash(result+e)}sLimit=64

/*
FILE ARCHIVED ON 18:01:46 May 27, 2017 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 02:52:59 Dec 11, 2017.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
*/
195 changes: 195 additions & 0 deletions doc/slimcoin.club/homepage.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
/*******************************
Global
*******************************/

html,
body {
font-size: 15px;
height: 100%;
}

body {
font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
background: #FFFFFF;
margin: 0px;
padding: 0px;
color: #555555;
text-rendering: optimizeLegibility;
min-width: 320px;
}

/*******************************
UI Overrides
*******************************/
#miningtgt, #miningprg, #mininghis {
font-family: 'Droid Sans Mono', monospace ;
text-align: right;
font-size : 70%;
}
.ui.header {
font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.ui.header,
h1,
h2 {
font-weight: normal !important;
}

h1.ui.header {
font-size: 3em;
}

h4.ui.header,
h5.ui.header,
.ui.icon.header {
font-weight: bold !important;
}

.ui.button {
font-weight: normal;
text-decoration: none;
}

a {
color: #009FDA;
text-decoration: none;
-webkit-transition: color 0.3s ease;
-moz-transition: color 0.3s ease;
transition: color 0.3s ease;
}

a:hover {
color: #00BAFF;
}

p a {
font-weight: bold;
}

/*******************************
Global
*******************************/
/*rtl:ignore*/
.menu .right.menu > .mobile.item {
display: none;
}

.ui.page.grid.segment {
padding-top: 3.5rem;
padding-bottom: 3.5rem;
}

.masthead.segment {
background-image: url(bg.jpg);
background-size: cover;
margin: 0em;
padding-top: 4rem;
overflow: hidden;
-webkit-box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
}

.masthead.segment .column {
position: relative;
}

.masthead.segment .information {
margin: 3em 1em 1em 280px;
}

.masthead.segment .information p {
max-width: 600px;
margin: 0em 0px 2em 0em;
font-size: 1.2em;
}

.masthead.segment h1.ui.header .sub {
font-size: 0.7em;
}

.masthead.segment .image {
position: absolute;
left: 0%;
bottom: -110px;
}

.overview .divided.grid .header + p {
min-height: 100px;
}

.ui.shape .icon,
.link.list .icon {
margin: 0em;
padding: 0em;
}

.ui.cube.shape .side {
background-color: transparent;
}

/*******************************
Responsive
*******************************/

/* Mobile Only */

@media only screen and (max-width : 768px) {
.ui.page.grid.segment {
padding-top: 2rem;
padding-bottom: 2rem;
}
/*rtl:ignore*/
.menu .right.menu > .item {
display: none;
}
/*rtl:ignore*/
.menu .right.menu > .mobile.item {
display: block;
}

h1.ui.header {
font-size: 1.5em;
}

.masthead.segment {
background-size: auto;
}

.masthead.segment .information {
margin-left: 190px;
}

.masthead.segment .image {
bottom: -65px;
width: 150px;
}

.masthead.segment .button {
font-size: 1rem;
}

.overview .divided.grid .header .icon {
font-size: 1.5em;
}

.overview .divided.grid .header + p {
min-height: 0px;
}

.masthead.segment .column {
font-size: 0.7rem;
}

.masthead.segment .column p {
display: none;
}
/*rtl:ignore*/
.selection.list .right.floated {
display: none;
}
}

@media only screen and (max-width : 1000px) {

}
Loading

0 comments on commit 4020346

Please sign in to comment.