Skip to content

Commit

Permalink
Develop Simualtor
Browse files Browse the repository at this point in the history
- Develop the Simulator page
- Update Simulator style
- Fix problems and other small changes
  • Loading branch information
Isaaker committed Aug 17, 2023
1 parent a310001 commit ddda433
Show file tree
Hide file tree
Showing 5 changed files with 389 additions and 8 deletions.
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</head>

<body>
<a href="./" >🏠 Home</a>
<a href="./" ><button>🏠 Home</button></a>

<img src="./images/Archery_Ghost_Simulator.png" width="120" height="120" alt="Ghost Archery Logo">

Expand Down
6 changes: 0 additions & 6 deletions home.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@ footer {
0 0 100px #00FF00;
}

/* Simulation Error */

.error-message {
color: red;
margin-top: 10px;
}

/* Simulator Settings */

Expand Down
2 changes: 1 addition & 1 deletion home.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<main>
<body>
<a href="./about.html">Acerca de...</a>
<a href="./about.html"><button>ℹ️ Acerca de...</button></a>

<br>
<!--- Web Page Banner --->
Expand Down
129 changes: 129 additions & 0 deletions simulator.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
body {
background-color: #fade95;
font-family: "Century Gothic";
color: black;
display: flex;
flex-direction: column;
min-height: 100vh;
}

footer {
background-color: #fade95;
font-family: "Century Gothic";
color: black;
padding: 20px;
margin-top: auto;
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid black;
}


/* Finish Button */

.shadow__btn {
padding: 10px 20px;
border: none;
font-size: 17px;
color: #fff;
border-radius: 7px;
letter-spacing: 4px;
font-weight: 700;
text-transform: uppercase;
transition: 0.5s;
transition-property: box-shadow;
background-color: #00FF00;
box-shadow: 0 0 25px #00FF00;
cursor: pointer;
outline: none;
}

.shadow__btn:hover {
box-shadow: 0 0 5px #00FF00,
0 0 25px #00FF00,
0 0 50px #00FF00,
0 0 100px #00FF00;
}

/* Issue Message */

.issue_message{
font-family: "Century Gothic";
color: green;
padding: 14px;
}

/* Simulation Form */

.simulation_form {
margin: 100px auto;
width: 800px;
height: auto;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
font-family: "Century Gothic";
font-size: 16px;
color: #333;
background-color: white;
}

.simulation_form .header {
font-size: 24px;
font-weight: bold;
}

.simulation_form .body {
font-size: 14px;
line-height: 1.5;
}

/* Data div */

.simulator_table{
font-family: "Century Gothic";
color: black;
background-color: white;
height: auto;
width: auto;
}


td{
line-height: 200%;
padding: 0 60px;
}

th{
line-height: 200%;
padding: 0 60px;
font-size: 24px;
font-weight: bold;
}

/* Next Button */

.shadow__btn {
padding: 10px 20px;
border: none;
font-size: 17px;
color: #fff;
border-radius: 7px;
letter-spacing: 4px;
font-weight: 700;
text-transform: uppercase;
transition: 0.5s;
transition-property: box-shadow;
background-color: #00FF00;
box-shadow: 0 0 25px #00FF00;
cursor: pointer;
outline: none;
}

.shadow__btn:hover {
box-shadow: 0 0 5px #00FF00,
0 0 25px #00FF00,
0 0 50px #00FF00,
0 0 100px #00FF00;
}
Loading

0 comments on commit ddda433

Please sign in to comment.