-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 03b6448
Showing
8 changed files
with
7,834 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@font-face { | ||
font-family: 'Aegean'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Aegean Regular'), local('Aegean-Regular'), url(Aegean.ttf) format('truetype'); | ||
} |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,167 @@ | ||
.item-container { | ||
float: left; | ||
margin: 10px; | ||
display: flex; | ||
position: relative; | ||
} | ||
.item-container:hover { | ||
background-color: #f5f5f0; | ||
} | ||
.search { | ||
font-family: 'Courier', serif; | ||
width: 200px; | ||
min-height: 4vh; | ||
display: inline-block; | ||
font-size: 4vh; | ||
opacity: 0.8; | ||
border: gray 3px solid; | ||
padding: 5px; | ||
} | ||
input:focus::placeholder { color:transparent; } | ||
img { | ||
width: 100%; | ||
height: 100%; | ||
object-fit: contain; | ||
} | ||
.item-shell { | ||
position: relative; | ||
display: flex; | ||
} | ||
.item-zoom { | ||
border: 1px solid grey; | ||
display: none; | ||
position: absolute; | ||
height: 80px; | ||
top: -80px; | ||
} | ||
.img-wrapper { | ||
position: relative; | ||
} | ||
.img-zoom-lens { | ||
display: none; | ||
position: absolute; | ||
border: 1px solid #d4d4d4; | ||
/*set the size of the lens:*/ | ||
width: 40px; | ||
height: 40px; | ||
z-index: 100; | ||
} | ||
.item { | ||
float: left; | ||
font-family: 'Aegean', serif; | ||
padding: 10px; | ||
border: 1px solid grey; | ||
max-width: 250px; | ||
position: relative; | ||
background-color: inherit; | ||
} | ||
.masthead { | ||
font-family: 'Courier', serif; | ||
background-color: maroon; | ||
opacity: 0.8; | ||
font-size: 4vh; | ||
color: white; | ||
border: white 3px solid; | ||
display: inline-block; | ||
padding: 5px; | ||
} | ||
.masthead-container { | ||
position: fixed; | ||
display: inline-flex; | ||
top: 0px; | ||
left: 0px; | ||
z-index: 100; | ||
min-height: 4vh; | ||
} | ||
.label { | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
background-color: black; | ||
padding: 2px; | ||
color: white; | ||
opacity: 0.5; | ||
} | ||
.image-label { | ||
position: fixed; | ||
font-size: 10px; | ||
background-color: gray; | ||
} | ||
|
||
.comment-box { | ||
position: fixed; | ||
padding: 6px; | ||
right: 10px; | ||
bottom: 10px; | ||
color: black; | ||
background-color: white; | ||
height: 50%; | ||
width: 40%; | ||
border: 1px solid black; | ||
overflow-y: auto; | ||
font-family: 'Courier', serif; | ||
font-size: 10px; | ||
display: none; | ||
} | ||
|
||
dt, dd, font { | ||
font-size: 12px; | ||
} | ||
.tip { | ||
position: fixed; | ||
left: 0; | ||
bottom:0; | ||
font-size: 18px; | ||
color: white; | ||
background-color: gray; | ||
font-family: 'Courier', serif; | ||
} | ||
|
||
.top-right-console { | ||
position: fixed; | ||
right: 0; | ||
top:0; | ||
padding: 10px; | ||
} | ||
|
||
.search-terms { | ||
padding: 10px; | ||
} | ||
|
||
.sort-status, .search-term { | ||
margin: 10px; | ||
padding: 5px; | ||
font-size: 25px; | ||
border: 1px solid black; | ||
background-color: gray; | ||
opacity: 0.5; | ||
float: right; | ||
clear: both; | ||
} | ||
|
||
.sort-status { display: none; } | ||
|
||
.image-label > a:link, .image-label > a:visited { | ||
color: white; | ||
text-decoration: none; | ||
} | ||
|
||
.image-label > a:link:active, .image-label > a:visited:active { | ||
color: white; | ||
} | ||
|
||
.help-menu { | ||
font-size: 15px; | ||
background-color: white; | ||
padding: 10px; | ||
position: fixed; | ||
top:0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
margin: auto; | ||
width: 600px; | ||
height: 450px; | ||
font-family: 'Courier', serif; | ||
border: 1px solid black; | ||
} |
Oops, something went wrong.