Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kiriltraykov committed May 7, 2019
1 parent 35e4878 commit c774c8c
Show file tree
Hide file tree
Showing 9 changed files with 4,692 additions and 0 deletions.
916 changes: 916 additions & 0 deletions thesis/chart1.js

Large diffs are not rendered by default.

Binary file added thesis/contextflier_page1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added thesis/contextflier_page2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added thesis/efficiency.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
529 changes: 529 additions & 0 deletions thesis/index.html

Large diffs are not rendered by default.

Binary file added thesis/interview.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions thesis/jquery-3.2.1.min.js

Large diffs are not rendered by default.

2,950 changes: 2,950 additions & 0 deletions thesis/main.js

Large diffs are not rendered by default.

293 changes: 293 additions & 0 deletions thesis/stylesheet.css
@@ -0,0 +1,293 @@
body {
background-color: #EE6363;
font-family: 'Sanchez', serif;
margin-left: 2%;
margin-right: 2%;
}

h1 {
font-family: 'Lato', sans-serif;
font-size: 3vw;
margin-bottom: 0px;
}

h3 {
font-family: 'Lato', sans-serif;
font-size: 1.5vw;
margin-top: 5px;
}

p {
font-size: 1.0vw;
}

#courtbutton {
font-size: 1.5vw;
background-color: #548B54;
border-color: white;
border-width: thick;
text-shadow: 0 1px 0 rgba(0,0,0,0.5);
color: #FFF;
width: 15%;
float: right;
}

#courtbutton:hover {
background-color: black;
}

.wrapper {
margin-left: 10%;
margin-right: 10%;
}

.court {
width: 100%;
height: 460px;
display: inline-block;
}
.court__grid {
display: grid;
height: 100%;
border: solid 2px white;
grid-template-columns: repeat(26, 1fr);
grid-template-rows: repeat(8, 1fr);
}
.court__cell {
background: #548B54;
box-shadow: inset 0 0 0 2px white;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 2.4vw;
text-align: center;
padding-left: 5px;
padding-right: 5px;
}
.court__alley--top-left {
grid-column: 1 / 14;
}
.court__alley--top-right {
grid-column: 14 / 27;
}
.court__nml--left {
grid-row: 2 / 8;
grid-column: 1 / 7;
}

.court__ad--left {
grid-row: 2 / 5;
grid-column: 7 / 14;
}
.court__ad--right {
grid-row: 2 / 5;
grid-column: 14 / 21;
}
.court__dc--left {
grid-row: 5 / 8;
grid-column: 7 / 14;
}
.court__dc--right {
grid-row: 5 / 8;
grid-column: 14 / 21;
}
.court__nml--right {
grid-row: 2 / 8;
grid-column: 21 / 27;
}
.court__alley--bottom-left {
grid-column: 1 / 14;
}
.court__alley--bottom-right {
grid-column: 14 / 27;
}

/*.court__nml--left:hover,*/
.court__ad--left:hover,
.court__ad--right:hover,
.court__dc--left:hover,
.court__dc--right:hover
/*.court__nml--right:hover*/
{
background-color: #8E388E;
}

#tile1 img {
width: 80%;
display: block;
margin-left: auto;
margin-right: auto;
}

#context {
margin-left: 30%;
margin-right: 30%;
}

#firsthalf, #secondhalf {
display: grid;
grid-template-columns: repeat(20, 1fr [col-start]);
grid-template-rows: repeat(4, 1fr [col-start]);
align-items: center;
}

.weekh1, .weekh2 {
font-size: 0.6vw;
font-style: italic;
text-align: center;
}

.allt {
font-size: 0.75vw;
text-align: center;
border-style: dashed;
border-width: thin;
border-color: #39ff14;
margin-top: 0px;
margin-bottom: 1px;
transition: height 2s;
}

#pt3, #pt18, #pt22, #pt29 {
background: #548B54;
}

#legend{
display: flex;
flex: 0 0 0px;
}

.legendrect {
width: 20px;
height: 20px;
}

.legendtext {
font-size: 0.6vw;
margin-top: 0;
}

#legendrect1 {
background: #39ff14;
}

#legendrect2 {
background: #00868B;
}

#rectangles {
display: grid;
grid-template-columns: repeat(2, 270px [col-start]);
align-items: center;
grid-row-gap: 5px;
}

.rect {
width: 1px;
height: 1px;
border-radius: 0 5% 5% 0;
transition: width 2s;
}

.recttext {
text-align: left;
vertical-align: middle;
border: black;
font-size:0.9vw;
color: white;
}

.playerList {
font-size: 0.9vw;
}

.playerList:hover
{
color: #8E388E;
font-weight: bold;
font-size: 1.5vw;
}

#player0 {
font-size: 1.2vw;
color: gold;
}

#player0x {
font-size: 1vw;
font-style: italic;
font-weight: bold;
}

#playerListHolder {
float: left;
width: 23%;
}

#chartInTile3{
position: fixed;
display: inline-block;
width: 50%;
height: 450px;
}

.tourn{
font-size: 0.75vw;
}


#tableInTile3 {
float: right;
width: 23%;
display: grid;
grid-template-columns: 0.6fr 1.5fr 0.4fr;
align-items: center;
grid-row-gap: 0;
}

.weekh3{
font-size: 0.6vw;
font-style: italic;
text-align: center;
}

.zz{
font-size: 1vw;
text-align: left;
padding-top: 2px;
padding-bottom: 2px;
margin-top: 0px;
margin-bottom: 0px;
}

.yy{
font-size: 1vw;
text-align: center;
padding-top: 2px;
padding-bottom: 2px;
margin-top: 0px;
margin-bottom: 0px;
}

#conclusiondiv{
float:left;
width: 30%;
}

#tile4 img {
margin-left: 10%;
height: auto;
}

a { color: white; }

#footnote1 {
position: fixed;
bottom: 0;
width: 96%;
background: #423C40;
color: white;
font-size: 0.85vw;

}

0 comments on commit c774c8c

Please sign in to comment.