add initial findings

This commit is contained in:
garrettmills
2019-11-22 11:57:53 -06:00
commit b550b5d1db
150 changed files with 17496 additions and 0 deletions

117
c2015/depPage/css/index.css Normal file
View File

@@ -0,0 +1,117 @@
@import url('http://fonts.googleapis.com/css?family=Bitter');
html {
font-family: Bitter;
}
body {
background-image: url("/depPage/images/background.jpg");
background-repeat: repeat-y;
background-size: 100% 100%;
background-attachment: fixed;
}
a {
color: #EEEEEE;
}
.navi {
text-align: center;
background: #202020;
opacity: 1;
width: 100%;
position: fixed;
bottom: 0%;
left: 0%;
z-index: 110;
}
.navi ul {
list-style-type: none;
margin: 0;
padding: 6px;
}
.navi ul li {
display: inline;
padding-left: 15px;
padding-right: 15px;
padding-top: 6px;
padding-bottom: 7px;
}
.navi ul li:hover {
background: #000000;
}
.navi ul li a {
color: white;
text-decoration: none;
}
.title {
position: fixed;
z-index: 110;
color: #FFFFFF;
background: #202020;
opacity: 1;
padding: 15px;
font-size: 20pt;
bottom: 30;
left: 30;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}
.title:hover {
background: #000000;
}
.content {
top: 60;
left: -5;
color: #DDDDDD;
position: relative;
z-index: 101;
background: rgba(40, 40, 40, 0.8);
/* border: 3px;
border-style: solid;
border-color: #282828;
border-radius: 10px;
width: 100%; */
padding-left: 8px;
padding: 5px;
width: 100%;
}
.desc {
position: relative;
z-index: 101;
background: rgba(40, 40, 40, 0.8);
text-align: center;
width: 100%;
left: -5;
font-size: 20pt;
color: #DDDDDD;
padding: 4px;
}
.copyright {
color: #555555;
}
.crbox {
visibility: hidden;
position: fixed;
bottom: 30;
right: 50;
background-color: #202020;
color: #DDDDDD;
padding: 10px;
width: 500px;
border-style: solid;
border-color: #202020;
border-top-right-radius: 7px;
border-top-left-radius: 7px;
z-index: 200;
}

View File

@@ -0,0 +1,171 @@
a{
text-decoration: none;
}
section {
width: 80%;
height: 200px;
margin: auto;
padding: 10px;
text-decoration: none;
}
div#one {
position: relative;
width: 20%;
height: 200px;
background: red;
float: left;
overflow: hidden;
text-decoration: none;
}
div#two {
display: inline;
width: 20%;
height: 200px;
background: orange;
float: left;
overflow: hidden;
}
div#three {
width: 20%;
height: 200px;
background: yellow;
float: left;
overflow: hidden;
}
div#four {
width: 20%;
height: 200px;
background: #202020;
float: left;
overflow: hidden;
}
div#five {
margin-left: 15%;
height: 200px;
background: blue;
overflow: hidden;
}
div#one img {
position: relative;
top: 50%;
left: 50%;
margin-left: -345px;
margin-top: -170px;
}
div#two img {
position: relative;
height: 310px;
width: 310px;
top: 50%;
left: 50%;
margin-left: -155px;
margin-top: -155px;
}
div#three img {
position: relative;
height: 225px;
width: 360px;
top: 50%;
left: 50%;
margin-left: -180px;
margin-top: -112px;
}
div#four img {
position: relative;
height: 256px;
width: 256px;
top: 50%;
left: 50%;
margin-left: -128px;
margin-top: -128px;
}
div#five img {
position: relative;
height: 600px;
width: 960px;
top: 50%;
left: 50%;
margin-left: -480px;
margin-top: -270px;
}
div#one div {
display: none;
position: absolute;
background: rgba(40, 40, 40, 0.8);
bottom: 0;
width: 100%;
padding-left: 10px;
transition: display 0.2s linear 0s;
overflow: none;
}
div#two div {
position: absolute;
background: rgba(40, 40, 40, 0.8);
bottom: 15;
width: 20%;
padding-left: 10px;
display: none;
overflow: hidden;
}
div#three div {
position: absolute;
background: rgba(40, 40, 40, 0.8);
bottom: 15;
width: 20%;
padding-left: 10px;
display: none;
overflow: hidden;
}
div#four div {
position: absolute;
background: rgba(40, 40, 40, 0.8);
bottom: 15;
width: 20%;
padding-left: 10px;
display: none;
overflow: hidden;
}
div#five div {
position: absolute;
background: rgba(40, 40, 40, 0.8);
bottom: 15;
width: 15.15%;
padding-left: 10px;
display: none;
overflow: hidden;
}
div#one:hover > div {
display: block;
}
div#two:hover > div {
display: block;
}
div#three:hover > div {
display: block;
}
div#four:hover > div {
display: block;
}
div#five:hover > div {
display: block;
}