Skip to content

Instantly share code, notes, and snippets.

Created February 12, 2017 13:30
Show Gist options
  • Save anonymous/730e298a6aaa407fa784e6710ca19c5a to your computer and use it in GitHub Desktop.
Save anonymous/730e298a6aaa407fa784e6710ca19c5a to your computer and use it in GitHub Desktop.
body {
background-repeat: no-repeat;
background-size: cover;
background-color: black;
}
.goldenKey {
position: absolute;
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#ticketBanner {
margin-left: auto;
margin-right: auto;
display: block;
}
#ticketBannerMobile {
display: none;
}
#ticketFooterMobile {
display: none;
}
.row {
text-align: justify;
min-width: 412px;
/*border: 1px solid green;*/
width: 100%; /* it changes by screen size actually */
height: 90px;
padding: 5px;
margin: 0 auto;
}
.row:after {
content: '';
display: inline-block;
width: 100%;
}
.col {
display: inline-block;
}
.box {
/*border: 1px solid #DDD;*/
width: 100px;
height: 80px;
margin: 0 auto;
border: none;
}
#inputToken {
height: 50px;
background-color: goldenrod;
}
input[type="text"] {
font-size: 30px;
color: black;
}
.btnSubmit {
margin-top: 5px;
text-align: center;
}
.ticketFooter {
margin-top: 5px;
clear: both;
}
.btn-primary {
color: black !important;
background-color: goldenrod !important;
}
.growl-container {
left: -23% !important;
}
@media screen and (min-width: 1200px) {
.growl-container {
left: -23% !important;
}
}
@media screen and (max-width: 700px) {
.goldenKey {
position: absolute;
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.row {
text-align: justify;
min-width: 200px;
width: 60%;
height: 90px;
padding: 5px;
margin: 0 auto;
}
.col {
display: inline-block;
}
.box {
width: 50px;
height: 30px;
margin: 0 auto;
border: none;
}
.row div:last-child div:first-child input {
background-color: green;
}
#inputToken {
width: 50px;
height: 50px;
margin: 0 auto;
background-color: goldenrod;
}
input[type="text"] {
font-size: 15px;
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment