hextris/style/style.css

397 lines
5.6 KiB
CSS
Raw Normal View History

2014-06-21 20:58:18 +00:00
* {
2015-03-14 20:37:12 +00:00
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2014-07-21 02:36:45 +00:00
padding:0;
margin:0;
-webkit-tap-highlight-color: rgba(0,0,0,0);
2014-06-21 20:58:18 +00:00
}
2015-03-14 20:37:12 +00:00
#HIGHSCORE {
position:absolute;
left:50%;
width:250px;
overflow: visible;
margin-left: -175px;
font-family: Exo;
}
@font-face {
font-family: Exo;
2015-05-29 16:20:23 +00:00
src:url("/style/fonts/Exo2-Regular.otf") format("opentype");
2015-03-14 20:37:12 +00:00
}
2014-08-18 21:39:57 +00:00
.tweet {
2015-03-14 20:37:12 +00:00
font-size:2rem;
color:#4099FF;
2014-08-18 21:39:57 +00:00
}
2014-08-19 05:12:38 +00:00
@media only screen
and (min-device-width : 320px)
2015-03-14 20:37:12 +00:00
and (max-device-width : 480px) {
.tweet{
font-size:1rem;
}
2014-08-19 05:12:38 +00:00
}
2014-08-18 14:22:49 +00:00
a {
2015-03-14 20:37:12 +00:00
color:#232323;
}
2014-08-18 15:45:01 +00:00
.twitter-share-button { width: 90px !important; }
2014-07-21 02:39:28 +00:00
.navbar {
width: 80%;
margin: 0 auto;
/*background-color: #34495e;*/
padding: 2.5vmin 0;
text-align: center;
}
.navbar li {
display: inline-block;
text-align: center;
width: calc( 33% - 1.25vmin );
/*pointer-events: none;*/
}
#title {
color: #ecf0f1;
font-size: 6vmin;
}
#score {
font-size: 4vmin;
text-align: center;
2014-05-31 15:13:40 +00:00
width: 30%;
}
2014-05-23 05:10:12 +00:00
#highscores {
text-align: center;
list-style: none;
}
2014-05-23 05:10:12 +00:00
.not-visible {
display: none;
}
button {
color: #ecf0f1;
background-color: rgba(0,0,0,0);
border: 0;
}
button:focus {
outline: 0;
2014-05-27 01:05:58 +00:00
}
2014-05-27 01:05:58 +00:00
#openSideBar {
2015-03-14 20:26:06 +00:00
position: fixed;
2015-05-15 01:24:21 +00:00
margin-top: 6px;
2015-03-14 20:38:09 +00:00
width:72px;
height:72px;
2015-05-15 01:24:21 +00:00
margin-left: 11px;
z-index: 3003;
2015-03-14 20:37:12 +00:00
color:#232323;
cursor:pointer;
2015-03-14 20:38:09 +00:00
top:0;
left:0;
2015-03-14 20:26:06 +00:00
}
2014-07-16 04:06:23 +00:00
#pauseBtn {
2015-05-15 01:41:20 +00:00
display:none;
2015-03-14 20:26:06 +00:00
position: fixed;
2015-05-15 01:57:46 +00:00
margin-bottom: 7px;
2015-03-14 20:38:09 +00:00
width:72px;
2015-05-15 02:22:58 +00:00
height:72px;
2015-05-15 01:57:46 +00:00
margin-right: 11px;
2014-05-31 15:13:40 +00:00
z-index: 3000;
color:#232323;
2014-05-27 01:05:58 +00:00
cursor:pointer;
2015-03-14 20:37:12 +00:00
right:0;
bottom:0;
z-index:99;
}
2014-06-30 16:29:26 +00:00
#restartBtn {
2015-05-15 01:41:20 +00:00
display:none;
2015-03-14 20:26:06 +00:00
position: fixed;
2015-05-15 01:57:46 +00:00
margin-bottom: 7px;
2015-03-14 20:38:09 +00:00
width:72px;
height:72px;
2015-05-15 01:57:46 +00:00
margin-left: 11px;
2015-03-14 20:26:06 +00:00
z-index: 3000;
color:#232323;
2014-06-30 16:29:26 +00:00
cursor:pointer;
2015-03-14 20:38:09 +00:00
bottom:0;
z-index:99;
2014-05-27 01:05:58 +00:00
}
#startBtn {
position:absolute;
left:40%;
top:38%;
height:25%;
width:25%;
z-index:99999999;
cursor:pointer;
}
2014-07-04 20:42:55 +00:00
2014-05-27 01:05:58 +00:00
#helpScreen {
height:100%;
width:100%;
z-index:3001;
position:fixed;
top:0;
2015-03-14 20:37:12 +00:00
margin:0;
font-size:15px;
text-align:center;
2014-05-27 01:05:58 +00:00
display:none;
color:#232323;
background-color:rgba(236,240,241,1);
2014-05-27 01:05:58 +00:00
}
2014-07-04 20:42:55 +00:00
#colorBlindBtn {
position:absolute;
width:120px;
height:20px;
z-index:9999;
left: 47%;
top:65%;
font-size:15px;
text-align:center;
color:#232323;
cursor:pointer;
}
2014-07-04 20:42:55 +00:00
.instructions_body {
2015-05-26 11:22:46 +00:00
padding: 15px;
font-size: 1em;
text-align: left;
max-width: 310px;
margin-top:70px;
}
.instructions_body > a {
font-weight: bold;
}
2015-05-26 11:22:46 +00:00
#inst_main_body > hr {
width:100%;
color: #232323;
background-color: #232323;
height: 1px;
border: 0;
/*margin-left: 10%;*/
}
#inst_main_body > p {
margin-bottom: 15px;
}
#instructions_head {
2015-05-26 11:22:46 +00:00
text-align: center;
font-size: 1.3em;
padding-bottom: 10px;
font-weight: bold;
2014-07-04 20:42:55 +00:00
}
@media only screen and (min-device-width : 320px)
2014-07-04 18:58:33 +00:00
and (max-device-width : 480px) {
2015-03-14 20:37:12 +00:00
#helpScreen {
position:fixed;
top:2px;
padding-top:20px;
margin:0;
width:100%;
height:100%;
font-size:13px;
text-align:center;
background-color:rgba(255,255,255,1);
2015-03-14 20:37:12 +00:00
}
#inst_main_body{
2015-05-26 11:22:46 +00:00
width:70% !important;
padding-left:15% !important;
margin-left:0;
2015-03-14 20:37:12 +00:00
}
2015-05-26 11:22:46 +00:00
#instructions_head {
padding-left:0%;
}
#openSideBar{
width:60px;
height:60px;
}
#pauseBtn {
width:60px;
height:60px;
}
#restartBtn {
width:60px;
height:60px;
}
2014-07-04 18:58:33 +00:00
}
2014-07-04 20:42:55 +00:00
2014-09-24 00:07:55 +00:00
.overlay {
2015-03-14 20:37:12 +00:00
position:absolute;
height:20%;
width:100%;
left:50%;
top:50%;
margin-left:-50%;
margin-top:-10%;
z-index:3000;
color:#232323;
text-align:center;
}
.helpText {
2015-03-14 20:37:12 +00:00
z-index:3001;
}
.centeredHeader {
font-size:5vw;
text-align:center;
line-height:4rem;
}
2014-07-04 20:42:55 +00:00
2014-07-22 01:35:54 +00:00
.centeredSubHeader {
font-size:2.2rem;
line-height:1em;
2014-07-22 01:35:54 +00:00
text-align:center;
}
.centeredSubSubHeader {
2015-03-14 20:37:12 +00:00
font-size:1.4rem;
text-align:center;
2014-07-22 01:35:54 +00:00
}
#attributions {
2015-03-14 20:37:12 +00:00
color:#232323;
position:absolute;
width:100%;
left: 0%;
text-align:center;
font-size:1.2rem;
2015-03-14 20:37:12 +00:00
z-index:98;
}
@media only screen and (orientation:landscape) {
2015-05-25 14:40:48 +00:00
#attributions {
2015-05-25 22:02:53 +00:00
top: calc(50vh + 11vh + 40px);
2015-05-25 14:40:48 +00:00
}
}
@media only screen and (orientation:portrait) {
2015-05-25 14:40:48 +00:00
#attributions {
2015-05-25 22:02:53 +00:00
top: calc(50vh + 11vw + 40px);
2015-05-25 14:40:48 +00:00
}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 600px) {
2015-03-14 20:37:12 +00:00
.centeredHeader {
font-size:2rem;
text-align:center;
line-height:0.6rem;
}
2014-07-04 20:42:55 +00:00
2015-03-14 20:37:12 +00:00
#attributions {
font-size:1.2rem;
2015-03-14 20:37:12 +00:00
}
2015-03-14 20:37:12 +00:00
.centeredSubHeader {
font-size:1rem;
text-align:center;
}
2014-07-04 20:42:55 +00:00
2015-03-14 20:37:12 +00:00
.overlay {
margin-top: -20%;
}
2014-06-22 15:26:47 +00:00
}
.blur {
2015-03-14 20:37:12 +00:00
opacity:0.1;
2014-05-31 15:13:40 +00:00
}
@font-face {
2015-03-14 20:37:12 +00:00
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto Regular'), local('Roboto-Regular'), url("fonts/roboto.woff") format('woff');
}
2015-03-14 19:47:52 +00:00
@font-face {
font-family: 'ico on';
2015-03-14 20:38:09 +00:00
font-style: normal;
font-weight: 400;
src: local('icomoon Regular'), url("fonts/icomoon.ttf"), format('ttf');
2015-03-14 19:47:52 +00:00
}
@font-face {
2015-03-14 20:37:12 +00:00
font-family: 'Q';
font-style: normal;
font-weight: 400;
src: local('Q Regular'), local('Q-Regular'), url("fonts/QuattrocentoSans-Regular.ttf") format('ttf');
}
* {
2015-03-14 20:37:12 +00:00
padding: 0;
margin: 0;
}
body {
2015-03-14 20:37:12 +00:00
color: #ecf0f1;
font-family: 'Roboto', sans-serif;
background-color:#ecf0f1;
}
#clickToExit {
2015-03-14 20:37:12 +00:00
cursor:pointer;
}
#canvas {
2015-03-14 20:37:12 +00:00
transition: all 0.5s ease;
position: absolute;
left:0;
right:0;
2014-07-27 11:57:49 +00:00
height:100%;
width:100%;
2015-03-14 20:37:12 +00:00
background-color:#ecf0f1;
z-index:3;
}
#title {
2015-03-14 20:37:12 +00:00
z-index:99;
margin-top:20px;
color:#2c3e50;
2014-05-31 23:37:23 +00:00
}
.unselectable {
2015-03-14 20:37:12 +00:00
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2014-07-21 01:47:08 +00:00
#bottombar {
padding:0;
position:fixed;
width:1000px;
2014-07-21 01:47:08 +00:00
text-align:center;
left:50%;
2015-03-14 20:37:12 +00:00
margin-left:-500px;
2014-07-21 01:47:08 +00:00
bottom:10px;
2014-07-21 02:46:01 +00:00
z-index:98;
2014-07-21 01:47:08 +00:00
}
2015-05-26 11:22:46 +00:00
#afterhr {
margin: 0;
padding: 0;
margin-bottom: -10px;
padding-bottom: -10px;
}