-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Replaced quotes with Unsplash photo attribution
- Loading branch information
Showing
10 changed files
with
728 additions
and
731 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Background photos: | ||
* Various Unknown | ||
* Chicago River South Branch from the Cityscape Bar by Chris Smith (20) | ||
* Hong Kong - Cityscape by Kin (19) | ||
* Unknown by Ryan Mcguire (15) | ||
* Unknown by Ryan Mcguire (14) | ||
* Pebbles by Edward Bowden (13) | ||
* boston view by craig Cloutier (12) | ||
* Reprocess on Teresa's Bench by Randy Wick (11) | ||
* Gaviota en el Top by Andr�s Nieto Porras (8) | ||
* Moscone North by Robert S. Donovan (7) | ||
* Light Trails by William Warby (5) | ||
* Bridge To Brunswick, Ga at Sunrise - 2 by Bob Jagendorf (4) | ||
* Brick Wall Texture by William Warby (3) | ||
* Smoke Plume by William Warby (2) | ||
Background photos: | ||
* Various Unknown | ||
* Chicago River South Branch from the Cityscape Bar by Chris Smith (20) | ||
* Hong Kong - Cityscape by Kin (19) | ||
* Unknown by Ryan Mcguire (15) | ||
* Unknown by Ryan Mcguire (14) | ||
* Pebbles by Edward Bowden (13) | ||
* boston view by craig Cloutier (12) | ||
* Reprocess on Teresa's Bench by Randy Wick (11) | ||
* Gaviota en el Top by Andr�s Nieto Porras (8) | ||
* Moscone North by Robert S. Donovan (7) | ||
* Light Trails by William Warby (5) | ||
* Bridge To Brunswick, Ga at Sunrise - 2 by Bob Jagendorf (4) | ||
* Brick Wall Texture by William Warby (3) | ||
* Smoke Plume by William Warby (2) | ||
* Smoke Plume by William Warby (1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,124 +1,129 @@ | ||
@font-face { | ||
font-family: 'raleway'; | ||
src: url('../font/raleway_thin-webfont.eot'); | ||
src: url('../font/raleway_thin-webfont.eot') format('embedded-opentype'), | ||
url('../font/raleway_thin-webfont.woff') format('woff'), | ||
url('../font/raleway_thin-webfont.ttf') format('truetype'), | ||
url('../font/raleway_thin-webfont.svg') format('svg'); | ||
} | ||
|
||
body { | ||
background-size: cover; | ||
|
||
margin: 0; | ||
padding: 0; | ||
|
||
font-family: raleway,sans-serif; | ||
} | ||
|
||
#clock { | ||
margin-top: 50px; | ||
text-align: center; | ||
|
||
font-size:100px; | ||
color: #cccccc; | ||
} | ||
|
||
#search, #pad { | ||
display: block; | ||
margin: auto; | ||
margin-top: 50px; | ||
width: 30%; | ||
|
||
padding:6px 15px 6px 15px; | ||
border-radius:20px; | ||
-moz-border-radius:20px; | ||
-webkit-border-radius:20px; | ||
|
||
border: 2px solid #cccccc; | ||
background: rgba(0, 0, 0, 0.4); | ||
color: #cccccc; | ||
|
||
font-size:24px; | ||
text-align: center; | ||
font-family: raleway,sans-serif; | ||
} | ||
|
||
#search:focus, #pad:focus { | ||
outline: 0; | ||
border: 2px solid #888888; | ||
|
||
color:#dddddd; | ||
} | ||
|
||
#search { | ||
height: 30px; | ||
} | ||
|
||
#alignBottom { | ||
position: absolute; | ||
bottom: 0; | ||
width: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
#pad { | ||
resize: none; | ||
overflow: auto; | ||
|
||
min-height: 60px; | ||
margin-bottom: 50px; | ||
} | ||
|
||
#apps { | ||
position: absolute; | ||
top: 30px; | ||
left: 30px; | ||
|
||
font-size: 24px; | ||
cursor: pointer; | ||
color: #cccccc; | ||
} | ||
|
||
#quote { | ||
padding:6px 15px 6px 15px; | ||
|
||
background: rgba(0, 0, 0, 0.4); | ||
color: #cccccc; | ||
|
||
font-size:24px; | ||
text-align: center; | ||
font-family: raleway,sans-serif; | ||
} | ||
|
||
#options { | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
} | ||
|
||
#pad:empty:not(:focus):before{ | ||
content:attr(data-text); | ||
cursor: text; | ||
} | ||
|
||
#search::-webkit-input-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} | ||
|
||
#search:-ms-input-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} | ||
|
||
#search:-moz-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} | ||
|
||
#search::-moz-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
@font-face { | ||
font-family: 'raleway'; | ||
src: url('../font/raleway_thin-webfont.eot'); | ||
src: url('../font/raleway_thin-webfont.eot') format('embedded-opentype'), | ||
url('../font/raleway_thin-webfont.woff') format('woff'), | ||
url('../font/raleway_thin-webfont.ttf') format('truetype'), | ||
url('../font/raleway_thin-webfont.svg') format('svg'); | ||
} | ||
|
||
body { | ||
background-size: cover; | ||
|
||
margin: 0; | ||
padding: 0; | ||
|
||
font-family: raleway,sans-serif; | ||
} | ||
|
||
#clock { | ||
margin-top: 50px; | ||
text-align: center; | ||
|
||
font-size:100px; | ||
color: #cccccc; | ||
} | ||
|
||
#search, #pad { | ||
display: block; | ||
margin: auto; | ||
margin-top: 50px; | ||
width: 30%; | ||
|
||
padding:6px 15px 6px 15px; | ||
border-radius:20px; | ||
-moz-border-radius:20px; | ||
-webkit-border-radius:20px; | ||
|
||
border: 2px solid #cccccc; | ||
background: rgba(0, 0, 0, 0.4); | ||
color: #cccccc; | ||
|
||
font-size:24px; | ||
text-align: center; | ||
font-family: raleway,sans-serif; | ||
} | ||
|
||
#search:focus, #pad:focus { | ||
outline: 0; | ||
border: 2px solid #888888; | ||
|
||
color:#dddddd; | ||
} | ||
|
||
#search { | ||
height: 30px; | ||
} | ||
|
||
#alignBottom { | ||
position: absolute; | ||
bottom: 0; | ||
width: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
#pad { | ||
resize: none; | ||
overflow: auto; | ||
|
||
min-height: 60px; | ||
margin-bottom: 50px; | ||
} | ||
|
||
#apps { | ||
position: absolute; | ||
top: 30px; | ||
left: 30px; | ||
|
||
font-size: 24px; | ||
cursor: pointer; | ||
color: #cccccc; | ||
} | ||
|
||
#quote { | ||
padding:6px 15px 6px 15px; | ||
|
||
background: rgba(0, 0, 0, 0.4); | ||
color: #cccccc; | ||
|
||
font-size:24px; | ||
text-align: center; | ||
font-family: raleway,sans-serif; | ||
} | ||
|
||
a { | ||
color: inherit; | ||
text-decoration: none; | ||
} | ||
|
||
#options { | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
} | ||
|
||
#pad:empty:not(:focus):before{ | ||
content:attr(data-text); | ||
cursor: text; | ||
} | ||
|
||
#search::-webkit-input-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} | ||
|
||
#search:-ms-input-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} | ||
|
||
#search:-moz-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} | ||
|
||
#search::-moz-placeholder { | ||
font-family: raleway,sans-serif; | ||
color: #cccccc; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
@font-face { | ||
font-family: 'raleway'; | ||
src: url('../font/raleway_thin-webfont.eot'); | ||
src: url('../font/raleway_thin-webfont.eot') format('embedded-opentype'), | ||
url('../font/raleway_thin-webfont.woff') format('woff'), | ||
url('../font/raleway_thin-webfont.ttf') format('truetype'), | ||
url('../font/raleway_thin-webfont.svg') format('svg'); | ||
} | ||
|
||
body { | ||
background: url('../bg/1.jpg'); | ||
background-size: cover; | ||
font-family: raleway,sans-serif; | ||
} | ||
|
||
label { | ||
display: block; | ||
} | ||
|
||
a { | ||
color: #fff; | ||
} | ||
|
||
#options { | ||
width: 500px; | ||
margin: auto; | ||
|
||
padding:6px 15px 6px 15px; | ||
border-radius:20px; | ||
-moz-border-radius:20px; | ||
-webkit-border-radius:20px; | ||
|
||
border: 2px solid #cccccc; | ||
background: rgba(0, 0, 0, 0.7); | ||
color: #cccccc; | ||
} | ||
|
||
#extraURLs { | ||
width: 100%; | ||
height: 100px; | ||
} | ||
|
||
#credits { | ||
margin-top: 100px; | ||
@font-face { | ||
font-family: 'raleway'; | ||
src: url('../font/raleway_thin-webfont.eot'); | ||
src: url('../font/raleway_thin-webfont.eot') format('embedded-opentype'), | ||
url('../font/raleway_thin-webfont.woff') format('woff'), | ||
url('../font/raleway_thin-webfont.ttf') format('truetype'), | ||
url('../font/raleway_thin-webfont.svg') format('svg'); | ||
} | ||
|
||
body { | ||
background: url('../bg/1.jpg'); | ||
background-size: cover; | ||
font-family: raleway,sans-serif; | ||
} | ||
|
||
label { | ||
display: block; | ||
} | ||
|
||
a { | ||
color: #fff; | ||
} | ||
|
||
#options { | ||
width: 500px; | ||
margin: auto; | ||
|
||
padding:6px 15px 6px 15px; | ||
border-radius:20px; | ||
-moz-border-radius:20px; | ||
-webkit-border-radius:20px; | ||
|
||
border: 2px solid #cccccc; | ||
background: rgba(0, 0, 0, 0.7); | ||
color: #cccccc; | ||
} | ||
|
||
#extraURLs { | ||
width: 100%; | ||
height: 100px; | ||
} | ||
|
||
#credits { | ||
margin-top: 100px; | ||
} |
Oops, something went wrong.