2022-08-07 03:40:24 -05:00
|
|
|
* { box-sizing: border-box; }
|
2022-09-25 08:26:54 -05:00
|
|
|
#button1,#button2,#button3{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-09-25 13:45:13 -05:00
|
|
|
/* #movieName,#bonusQuestion{
|
|
|
|
display: none;
|
|
|
|
} */
|
2022-09-25 08:26:54 -05:00
|
|
|
.imageButton{
|
|
|
|
|
|
|
|
background-color: #3a3a3a; /* Green */
|
|
|
|
border: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: white;
|
|
|
|
/* padding: 5px 5px; */
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
2022-09-25 13:45:13 -05:00
|
|
|
font-size: 18px;
|
2022-09-25 08:26:54 -05:00
|
|
|
|
|
|
|
}
|
2022-09-26 03:23:35 -05:00
|
|
|
.customIcon {
|
|
|
|
/* background: url('images/Group.svg'); */
|
|
|
|
/* background-repeat: no-repeat; */
|
|
|
|
|
|
|
|
/* background-attachment: fixed; */
|
|
|
|
/* background-position: center; */
|
|
|
|
/* background-size: 50px 70px; */
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
padding: 25px 10px;
|
|
|
|
height: 78px;
|
|
|
|
width: 68px;
|
|
|
|
/* display: box; */
|
|
|
|
/* flex: none; */
|
|
|
|
/* top: 50%; */
|
|
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
/* margin-top: 10px;
|
|
|
|
margin-bottom: 10px; */
|
|
|
|
overflow: visible;
|
|
|
|
/* Other styles here */
|
|
|
|
}
|
|
|
|
|
2022-09-25 13:45:13 -05:00
|
|
|
.resetButton{
|
|
|
|
align-items: center;
|
|
|
|
display: block;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2022-09-25 08:26:54 -05:00
|
|
|
.active{
|
|
|
|
background-color: #656565;
|
|
|
|
}
|
2022-09-25 13:45:13 -05:00
|
|
|
.bonusScreen{
|
|
|
|
font-size: 32px;
|
|
|
|
padding: 12px 16px;
|
|
|
|
}
|
2022-09-25 08:26:54 -05:00
|
|
|
.picButtons{
|
2022-09-25 13:45:13 -05:00
|
|
|
margin-top: -10px;
|
2022-09-25 08:26:54 -05:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2022-09-25 05:12:37 -05:00
|
|
|
.fa-tint{
|
2022-09-26 03:23:35 -05:00
|
|
|
color: red;
|
2022-09-25 05:12:37 -05:00
|
|
|
padding-left: 21.625px !important;
|
|
|
|
padding-right: 21.625px !important;
|
|
|
|
}
|
2022-09-26 03:23:35 -05:00
|
|
|
.fa-star{
|
|
|
|
width 68px;
|
|
|
|
color: yellow;
|
|
|
|
padding-right:13.75px !important;
|
|
|
|
padding-left:13.75px !important;
|
|
|
|
}
|
2022-08-07 03:40:24 -05:00
|
|
|
.content{
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
2022-09-25 05:12:37 -05:00
|
|
|
display: table;
|
|
|
|
/* margin: 30px 0; */
|
2022-08-07 03:40:24 -05:00
|
|
|
}
|
2022-09-25 08:26:54 -05:00
|
|
|
/* .chartNumber{
|
2022-09-25 05:12:37 -05:00
|
|
|
position: relative;
|
|
|
|
margin: auto;
|
|
|
|
height: 50%;
|
|
|
|
width: 60%;
|
2022-09-25 08:26:54 -05:00
|
|
|
} */
|
2022-09-25 05:12:37 -05:00
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
.overlay {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
transition: opacity 500ms;
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 99;
|
|
|
|
}
|
2022-09-11 03:32:29 -05:00
|
|
|
#streakNumber{
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 0;
|
2022-09-25 13:45:13 -05:00
|
|
|
margin-bottom: 10px;
|
2022-09-11 03:32:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-08-07 03:40:24 -05:00
|
|
|
|
|
|
|
.InstructionText{
|
2022-09-25 05:12:37 -05:00
|
|
|
display: block;
|
|
|
|
width: 80%;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
2022-08-07 03:40:24 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
.overlay:target {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.popup {
|
|
|
|
text-align: left;
|
|
|
|
margin: 70px auto;
|
|
|
|
padding: 20px;
|
|
|
|
background: #333;
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 30%;
|
|
|
|
position: relative;
|
|
|
|
transition: all 5s ease-in-out;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.popup i{
|
|
|
|
padding: 14px 16px;
|
|
|
|
font-size: 36px;
|
2022-09-25 05:12:37 -05:00
|
|
|
display: block;
|
|
|
|
width: 20%;
|
|
|
|
text-align: center;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
2022-08-07 03:40:24 -05:00
|
|
|
}
|
2022-09-25 05:12:37 -05:00
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
.popup h2 {
|
|
|
|
margin-top: 0;
|
|
|
|
color: white;
|
|
|
|
font-family: Tahoma, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
.popup .close {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 30px;
|
|
|
|
transition: all 200ms;
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
color: white;;
|
|
|
|
}
|
|
|
|
.popup .close:hover {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
.popup .content {
|
|
|
|
max-height: 30%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2022-09-07 09:05:49 -05:00
|
|
|
.footer{
|
|
|
|
font-family: 'Arial', sans-serif;
|
|
|
|
font-size: 12px;
|
2022-09-11 09:11:13 -05:00
|
|
|
position: relative;
|
2022-09-07 09:05:49 -05:00
|
|
|
bottom: 10px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
|
|
|
color: #ECECEC;
|
|
|
|
/* position: absolute; */
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
2022-08-07 03:40:24 -05:00
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
background-color: #121212;
|
|
|
|
color: white;
|
|
|
|
font: 16px Arial;
|
2022-09-25 05:12:37 -05:00
|
|
|
/* display:flex; flex-direction:column; justify-content:center; */
|
2022-08-07 03:40:24 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
i{
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobileInfo{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottomContainer{
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subnav{
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
#shareResult{
|
|
|
|
background-color: green;
|
|
|
|
margin-top: 20px;
|
|
|
|
display:none;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
}
|
2022-09-11 07:41:49 -05:00
|
|
|
#countDown{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-08-07 03:40:24 -05:00
|
|
|
#guessForm{
|
|
|
|
padding-bottom: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#firstGuess , #secondGuess{
|
|
|
|
display: none;
|
|
|
|
margin-top: 10px;
|
|
|
|
border-style: solid;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom:10px;
|
|
|
|
width: 450px;
|
|
|
|
/* display: block; */
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.cross{
|
|
|
|
width: 20px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
display: block;
|
2022-09-25 13:45:13 -05:00
|
|
|
padding: 0px 16px;
|
2022-08-07 03:40:24 -05:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2022-09-11 07:41:49 -05:00
|
|
|
figure{
|
|
|
|
width:%100;
|
|
|
|
overflow: hidden;
|
|
|
|
margin:10;
|
|
|
|
}
|
|
|
|
/* figure img{
|
|
|
|
display:block;
|
|
|
|
width:100%;
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
.title {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2022-09-25 08:26:54 -05:00
|
|
|
top: 8px;
|
2022-08-07 03:40:24 -05:00
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
}
|
|
|
|
.autocomplete {
|
|
|
|
/*the container must be positioned relative:*/
|
2022-09-11 09:11:13 -05:00
|
|
|
width: 100%;
|
2022-08-07 03:40:24 -05:00
|
|
|
text-align:left;
|
|
|
|
position: relative;
|
2022-09-11 09:11:13 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
align-self: center;
|
2022-08-07 03:40:24 -05:00
|
|
|
}
|
|
|
|
#guessForm {
|
2022-09-26 03:23:35 -05:00
|
|
|
width: 450px;
|
2022-08-07 03:40:24 -05:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
/* color: black; */
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
input[type=text] {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
input[type=button] {
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #B91C1C;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2022-09-11 09:11:13 -05:00
|
|
|
|
|
|
|
/* .autocomplete{
|
|
|
|
display:flex;
|
|
|
|
} */
|
|
|
|
#submitGuess{
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2022-09-25 13:45:13 -05:00
|
|
|
#submitBonusGuess{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#skipBonusGuess{
|
|
|
|
display: none;
|
|
|
|
background-color: #121212;
|
|
|
|
border: 1px solid orangered;
|
|
|
|
}
|
2022-09-11 09:11:13 -05:00
|
|
|
.autocomplete-items {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2022-08-07 03:40:24 -05:00
|
|
|
.autocomplete-items {
|
2022-09-11 09:11:13 -05:00
|
|
|
align-self:flex-end;
|
2022-08-07 03:40:24 -05:00
|
|
|
position: absolute;
|
|
|
|
border: 1px solid #d4d4d4;
|
|
|
|
color: black;
|
|
|
|
border-bottom: none;
|
|
|
|
border-top: none;
|
|
|
|
z-index: 99;
|
|
|
|
/*position the autocomplete items to be the same width as the container:*/
|
2022-09-11 09:11:13 -05:00
|
|
|
/* top: 100%; */
|
2022-08-07 03:40:24 -05:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.autocomplete-items div {
|
2022-09-11 09:11:13 -05:00
|
|
|
align-self:flex-end;
|
2022-08-07 03:40:24 -05:00
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: #fff;
|
|
|
|
border-bottom: 1px solid #d4d4d4;
|
|
|
|
}
|
|
|
|
.autocomplete-items div:hover {
|
|
|
|
/*when hovering an item:*/
|
|
|
|
background-color: #e9e9e9;
|
|
|
|
}
|
|
|
|
.autocomplete-active {
|
|
|
|
/*when navigating through the items using the arrow keys:*/
|
|
|
|
background-color: DodgerBlue !important;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* style of navigation */
|
|
|
|
.topnav {
|
|
|
|
margin-top: 0px;
|
|
|
|
background-color: #333;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5 5 5 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Style the links inside the navigation bar */
|
|
|
|
.topnav a {
|
|
|
|
float: left;
|
|
|
|
color: #f2f2f2;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 16px 14px 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change the color of links on hover */
|
|
|
|
.topnav a:hover {
|
|
|
|
background-color: #ddd;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a color to the active/current link */
|
|
|
|
.topnav a.active {
|
|
|
|
background-color: #04AA6D;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Right-aligned section inside the top navigation */
|
|
|
|
.topnav-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2022-09-07 09:05:49 -05:00
|
|
|
.fa-heart{
|
|
|
|
color:red;
|
|
|
|
}
|
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
@media only screen and (max-width: 1200px) {
|
|
|
|
|
|
|
|
.subnav{
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
display: block;
|
2022-09-25 13:45:13 -05:00
|
|
|
padding: 4px 16px;
|
2022-08-07 03:40:24 -05:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-09-11 09:11:13 -05:00
|
|
|
|
2022-09-25 13:45:13 -05:00
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
#firstGuess , #secondGuess{
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
/* display: block; */
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.archive{
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.calendar {
|
|
|
|
position: relative;
|
2022-09-07 09:05:49 -05:00
|
|
|
resize: horizontal;
|
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
width: 400px;
|
|
|
|
background-color: #fff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
box-shadow: 0 5px 50px rgba(#000, 0.5);
|
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.calendar__date {
|
|
|
|
padding: 20px;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
|
|
|
|
grid-gap: 25px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar__day {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 25px;
|
|
|
|
font-weight: 600;
|
|
|
|
color: #262626;
|
|
|
|
|
2022-08-07 03:44:52 -05:00
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar__number {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 25px;
|
|
|
|
color: grey;
|
|
|
|
font-style:oblique;
|
|
|
|
|
|
|
|
}
|
|
|
|
.current{
|
|
|
|
border-style: dashed;
|
|
|
|
background-color: orange;
|
|
|
|
color: white;
|
|
|
|
border-color: black;
|
|
|
|
border-width: 2px;
|
|
|
|
font-style:normal;
|
|
|
|
|
|
|
|
}
|
|
|
|
.past{
|
|
|
|
background-color: orange;
|
|
|
|
cursor: pointer;
|
|
|
|
color: white;
|
|
|
|
font-style:normal;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
.won{
|
|
|
|
/* cursor:none; */
|
|
|
|
color: white;
|
|
|
|
cursor:default;
|
|
|
|
background-color: green;
|
|
|
|
font-style:normal;
|
|
|
|
/* border-width: 0px; */
|
|
|
|
}
|
|
|
|
.lost{
|
|
|
|
/* cursor:none; */
|
|
|
|
color: white;
|
|
|
|
background-color: red;
|
|
|
|
font-style:normal;
|
|
|
|
/* border-width: 0px; */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-09-07 09:05:49 -05:00
|
|
|
@media only screen and (max-width: 460px) {
|
|
|
|
.calendar {
|
|
|
|
max-width: 300px;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
.calendar__date {
|
|
|
|
padding: 10px;
|
|
|
|
grid-gap: 15px;
|
|
|
|
}
|
2022-09-11 07:41:49 -05:00
|
|
|
.movie-img img{
|
|
|
|
margin:0 -16.665%;
|
|
|
|
width:133.33%;
|
|
|
|
}
|
2022-09-07 09:05:49 -05:00
|
|
|
}
|
2022-08-07 03:40:24 -05:00
|
|
|
|
|
|
|
|
2022-09-11 07:41:49 -05:00
|
|
|
|
2022-08-07 03:40:24 -05:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.topnav a {
|
|
|
|
text-align: center;
|
|
|
|
padding: 7px 8px 7px 8px;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.wideInfo{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.mobileInfo{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.title {
|
2022-09-25 08:26:54 -05:00
|
|
|
top:0px;
|
2022-08-07 03:40:24 -05:00
|
|
|
position: relative;
|
|
|
|
float: left;
|
2022-09-25 08:26:54 -05:00
|
|
|
width: 230px;
|
|
|
|
}
|
|
|
|
i{
|
|
|
|
font-size: 1.4rem;
|
2022-08-07 03:40:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup{
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
input[type=text] {
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
input[type=button] {
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: #B91C1C;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
#guessForm {
|
2022-09-11 09:11:13 -05:00
|
|
|
width: 90%;
|
2022-08-07 03:40:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-09-07 09:05:49 -05:00
|
|
|
@media only screen and (min-width: 600px) and (max-width: 1500px) {
|
|
|
|
.popup{
|
|
|
|
width: 450px;
|
|
|
|
}
|
|
|
|
}
|