Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
mwenge committed Jun 15, 2019
0 parents commit 03b6448
Show file tree
Hide file tree
Showing 8 changed files with 7,834 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Aegean.css
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 added Aegean.ttf
Binary file not shown.
167 changes: 167 additions & 0 deletions LinearBExplorer.css
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;
}
Loading

0 comments on commit 03b6448

Please sign in to comment.