-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
129,037 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,323 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
|
||
body { | ||
background-color: rgb(30, 30, 30); | ||
color: white; | ||
} | ||
|
||
.cy { | ||
background-color: rgb(30, 30, 30); | ||
display: inline-block; | ||
text-align: left; | ||
height: 768px; | ||
width: 768px; | ||
padding: 10px; | ||
border: 4px solid black; | ||
} | ||
|
||
.banner { | ||
width: 100%; | ||
height: 100vh; | ||
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), | ||
url(../html/background.jpg); | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.navbar { | ||
width: 85%; | ||
margin: auto; | ||
padding: 35px 0; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
.logo { | ||
width: 200px; | ||
cursor: pointer; | ||
} | ||
|
||
.navbar ul li { | ||
margin: 0 20px; | ||
list-style: none; | ||
display: inline-block; | ||
position: relative; | ||
} | ||
|
||
.navbar ul li a { | ||
text-decoration: none; | ||
color: #fff; | ||
text-transform: uppercase; | ||
} | ||
|
||
.navbar ul li::after { | ||
content: ""; | ||
width: 0; | ||
height: 3px; | ||
position: absolute; | ||
background: #003169; | ||
left: 0; | ||
bottom: -8px; | ||
transition: 0.5s; | ||
} | ||
|
||
.navbar ul li:hover::after { | ||
width: 100%; | ||
} | ||
|
||
.content, | ||
.options-container { | ||
width: 100%; | ||
position: absolute; | ||
top: 50%; | ||
transform: translateY(-50%); | ||
text-align: center; | ||
color: #fff; | ||
} | ||
|
||
.content h1 { | ||
margin-top: 80px; | ||
font-size: 50px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.options-container h1 { | ||
margin-top: 240px; | ||
font-size: 40px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.content p { | ||
margin: 20px auto; | ||
font-weight: 100; | ||
line-height: 25px; | ||
} | ||
|
||
button { | ||
margin: 20px 10px; | ||
width: 200px; | ||
padding: 15px 0; | ||
text-align: center; | ||
border-radius: 25px; | ||
border: 2px solid #003169; | ||
background: transparent; | ||
font-weight: bold; | ||
text-transform: uppercase; | ||
color: #fff; | ||
cursor: pointer; | ||
position: relative; | ||
overflow: hidden; | ||
outline: none; | ||
} | ||
|
||
button span { | ||
background: #003169; | ||
width: 0; | ||
height: 100%; | ||
border-radius: 25px; | ||
position: absolute; | ||
left: 0; | ||
bottom: 0; | ||
z-index: -1; | ||
transition: 0.5s; | ||
} | ||
|
||
button:hover span { | ||
width: 100%; | ||
} | ||
|
||
button:hover { | ||
border: none; | ||
} | ||
|
||
.options-container .set { | ||
justify-content: space-between; | ||
margin: 20px 0; | ||
} | ||
|
||
.radio-container label { | ||
background: rgba(0, 49, 105, 0.2); | ||
border: 1px solid transparent; | ||
border-radius: 2px; | ||
display: inline-block; | ||
height: 26px; | ||
line-height: 26px; | ||
margin: 10px 0; | ||
padding: 0; | ||
text-align: center; | ||
transition: 0.3s all ease-in-out; | ||
width: 80px; | ||
overflow: hidden; | ||
} | ||
|
||
.radio-container input[type="radio"] { | ||
display: none; | ||
} | ||
|
||
.radio-container input[type="radio"]:checked + label { | ||
background: #003169; | ||
border: 1px solid rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.disable-select { | ||
user-select: none; /* supported by Chrome and Opera */ | ||
-webkit-user-select: none; /* Safari */ | ||
-khtml-user-select: none; /* Konqueror HTML */ | ||
-moz-user-select: none; /* Firefox */ | ||
-ms-user-select: none; /* Internet Explorer/Edge */ | ||
} | ||
|
||
div.cy.headless { | ||
height: 0; | ||
padding: 0; | ||
overflow: hidden; | ||
visibility: hidden; | ||
color: black; | ||
} | ||
|
||
.control-center { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 1000px; | ||
height: 600px; | ||
display: inline; | ||
color: white; | ||
box-shadow: 3px 10px 20px 5px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.control-center h1 { | ||
font-size: 36px; | ||
padding-top: 30px; | ||
padding-bottom: 50px; | ||
font-weight: 300; | ||
text-align: center; | ||
font-weight: bold; | ||
} | ||
|
||
.control-center p { | ||
font-size: 18px; | ||
padding: 5px; | ||
margin-left: 50px; | ||
} | ||
|
||
div.slider-container { | ||
padding-top: 50px; | ||
} | ||
|
||
.control-center input { | ||
margin-left: 50px; | ||
width: 170px; | ||
} | ||
|
||
input[type="range"] { | ||
position: relative; | ||
-webkit-appearance: none; | ||
width: 20%; | ||
} | ||
input[type="range"]::-webkit-slider-runnable-track { | ||
height: 2px; | ||
background: #f3f3f3; | ||
border-bottom: 1px solid #2980b9; | ||
} | ||
input[type="range"]::-webkit-slider-runnable-track:before { | ||
content: ""; | ||
background: white; | ||
width: 2px; | ||
height: 15px; | ||
position: absolute; | ||
top: -7px; | ||
border-left: 1px solid #2980b9; | ||
} | ||
input[type="range"]::-webkit-slider-runnable-track:after { | ||
content: ""; | ||
background: white; | ||
width: 2px; | ||
height: 15px; | ||
position: absolute; | ||
top: -7px; | ||
right: 0; | ||
border-right: 1px solid #2980b9; | ||
} | ||
input[type="range"]::-webkit-slider-thumb { | ||
-webkit-appearance: none; | ||
border: 3px solid #246d9c; | ||
height: 20px; | ||
width: 20px; | ||
border-radius: 50%; | ||
background: white; | ||
cursor: pointer; | ||
margin-top: -9px; | ||
position: relative; | ||
z-index: 1; | ||
} | ||
input[type="range"]:focus { | ||
outline: none; | ||
} | ||
|
||
#orders { | ||
position: absolute; | ||
width: 55%; | ||
height: 70%; | ||
left: 380px; | ||
top: 120px; | ||
background: rgba(20, 20, 20, 0.8); | ||
padding: 0; | ||
} | ||
|
||
#orders textarea { | ||
background-color: rgba(0, 0, 0, 0.1); | ||
font-size: 12px; | ||
color: #fff; | ||
border: none; | ||
padding: 0; | ||
width: 100%; | ||
height: 100%; | ||
resize: none; | ||
outline: none; | ||
cursor: default; | ||
} | ||
|
||
.legend { | ||
position: absolute; | ||
width: 50%; | ||
transform: translateX(50%); | ||
} | ||
|
||
.tooltip { | ||
position: relative; | ||
display: inline-block; | ||
border-bottom: 1px dotted white; | ||
} | ||
|
||
.tooltip .tooltiptext { | ||
visibility: hidden; | ||
width: 240px; | ||
background-color: rgb(114, 113, 113); | ||
color: #fff; | ||
text-align: center; | ||
border-radius: 6px; | ||
padding: 5px 0; | ||
|
||
/* Position the tooltip */ | ||
position: absolute; | ||
z-index: 1; | ||
top: -5px; | ||
left: 105%; | ||
} | ||
|
||
.tooltip:hover .tooltiptext { | ||
visibility: visible; | ||
} | ||
|
||
.simTime { | ||
position: absolute; | ||
left: 3%; | ||
top: 5%; | ||
} |
Oops, something went wrong.