1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 20:25:32 -04:00

commit extra folders b/c CI deploy

This commit is contained in:
2018-05-02 09:00:27 -04:00
parent 13859007be
commit 7100bf726c
12 changed files with 341 additions and 3 deletions

2
.gitignore vendored
View File

@@ -14,5 +14,3 @@ yarn.lock
public/
static/scrabble/

View File

@@ -0,0 +1,64 @@
html, body {
display: table;
font-size: 4.5em;
font-family: 'Open Sans', sans-serif;
width: 100%;
height: 100%;
/*background-color: #414ef8;*/
background-color: #94d500;
color: #fff;
cursor: default;
}
div#container {
display: table-cell;
vertical-align: middle;
margin: 0 auto;
width: 100%;
height: 100%;
text-align: center;
}
@media (min-width: 0px) {
html { font-size: 50%; }
}
@media (min-width: 300px) {
html { font-size: 70%; }
}
@media (min-width: 500px) {
html { font-size: 80%; }
}
@media (min-width: 700px) {
html { font-size: 120%; }
}
@media (min-width: 1200px) {
html { font-size: 200%; }
}
div#footer {
position: absolute;
bottom: 0;
right: 0;
font-size: 14px;
margin: 12px;
}
div#footer a {
text-decoration: none;
color: #ffffff;
}
div#footer span {
vertical-align: middle;
}
div#footer img {
height: 20px;
width: 20px;
vertical-align: middle;
margin-right: 6px;
}

View File

@@ -0,0 +1,7 @@
jQuery(document).ready(function($) {
$.get('synonyms.txt', function(data) {
var synonyms = data.split("\n");
var line = Math.floor(synonyms.length * Math.random());
$('span#synonym').html(synonyms[line]);
});
});

BIN
static/awesome/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
static/awesome/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

31
static/awesome/index.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>synonyms for awesome</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:600">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="awesome.css">
<link rel="shortcut icon" href="favicon.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="awesome.js"></script>
</head>
<body>
<div id="container">
<span id="synonym"></span>
</div>
<div id="footer">
<a href="https://scrabble.io" target="_blank" rel="noopener noreferrer nofollow"><img src="s.png"><span>made with &hearts; by scrabble</span></a>
</div>
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-1563964-40','auto');
ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>

177
static/awesome/normalize.css vendored Normal file
View File

@@ -0,0 +1,177 @@
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
h1 {
font-size: 2em;
margin: .67em 0;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
pre {
font-family: monospace, monospace;
font-size: 1em;
}
a {
background-color: transparent;
}
abbr[title] {
border-bottom: 0;
text-decoration: underline;
text-decoration: underline dotted;
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
padding: .35em .75em .625em;
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
}
progress {
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
details {
display: block;
}
summary {
display: list-item;
}
template {
display: none;
}
[hidden] {
display: none;
}

BIN
static/awesome/s.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,60 @@
alarming
astonishing
astounding
awe-inspiring
beautiful
breathtaking
exalted
excellent
exceptional
extraordinary
fabulous
fantastic
first-rate
flawless
formidable
funkadelic
grand
imposing
impressive
inconceivable
incredible
indomitable
intimidating
kick-butt
kryptonian
legendary
magnificent
majestic
marvelous
mind-blowing
moving
nifty
outstanding
overwhelming
phenomenal
prodigious
remarkable
righteous
sensational
shocking
staggering
striking
stunning
stupefying
stupendous
sublime
super
superb
supercalifragilisticexpialidocious
terrific
transcendent
wicked
wonderful
wondrous
impeccable
solid diamond
perfect
amazing
ticket-worthy
whiz-bang

View File

@@ -29,7 +29,7 @@
# TECHNOLOGY COLOPHON
HTML5, CSS3
Hugo
Fastly CDN (via Firebase Hosting)
Google Analytics
Let's Encrypt SSL

View File

@@ -1,3 +1,4 @@
User-Agent: *
Disallow: /y2k/
Disallow: /scrabble/
Disallow: /awesome/

Binary file not shown.