[Hackathon] Hg mode initial

This commit is contained in:
Peter Cottle 2013-07-31 13:44:13 -07:00
parent 52c6579fae
commit 0f1c9c4e7a
15 changed files with 443 additions and 26 deletions

View file

@ -171,6 +171,7 @@ body,
transition: opacity 1700ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
}
.visBackgroundColor,
.transitionAll {
-webkit-transition: all 700ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
-moz-transition: all 700ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
@ -187,6 +188,24 @@ body,
transition: all 1700ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
}
/* mode stuff */
#mainVisSpace {
position: relative;
}
#mainVisSpace .modeText {
position: absolute;
bottom: 0;
opacity: 0.0;
font-size: 60pt;
color: black;
}
body.gitMode #mainVisSpace .modeText.gitMode,
body.hgMode #mainVisSpace .modeText.hgMode {
opacity: 0.5;
}
/* Some interface things */
div.canvasTerminalHolder {
@ -210,6 +229,12 @@ div.gitDemonstrationView > div.visHolder,
background-color: #5cbcfc;
}
body.hgMode div.gitDemonstrationView > div.visHolder,
body.hgMode .visBackgroundColor {
background: #5CFCD6;
background-color: #5CFCD6;
}
#interfaceWrapper {
min-width: 600px;
min-height: 600px;