Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spruce Cassandra Oh Weather Report #63

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/Roboto.ttf
Binary file not shown.
Binary file added assets/Shorelines.otf
Binary file not shown.
141 changes: 138 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,144 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Report</title>
<link href="styles/index.css" rel="stylesheet">
<title>Biome-Mania</title>
</head>
<body>

<header>
<h1>
<span class="sillyfont">(BiomeMania)</span>
<div id="tagline">
Weather or Not
</div>
</h1>
</header>
<section class="grid">
<h3 id="currentcity"></h3>
<section class="controls" id="tempcontrols">
<h2>
Temperature
</h2>
<section class="controlcontent" id="tempcontent">
<span id="tempchart">

</span>
<span id="tempvalue">

</span>
<span class="button" id="tempincrease">
⬆️
</span>
<span id="tempdecrease" class="button">
⬇️
</span>
</section>

</section>
<section class="controls" id="weathercontrols">
<h2>
Weather
</h2>
<section class="controlcontent id="weathercontent">
<span class="arrow" id="weatherleft">
⬅️
</span>
<span id="weatherdisplay">
</span>
<span class="arrow" id="weatherright">
➡️
</span>
</section>
</section>
<section class="controls" id="ecocontrols">
<h2>
Ecosystem
</h2>
<h3>
<span id="ecodescription">

</span>
</h3>

</section>
<section class="cityside">
<section class="city" id="cityone">
<input id="cityonename" type="text">
<span class="citybutton" id="cityoneresetname">
🔄
</span>
<section class="environment" id="cityoneenvironment">
<div class="sky" id="cityonesky">
</div>
<div class="weather" id="cityoneweather">
</div>
<div class="animals" id="cityoneanimals">
</div>
<div class="plants" id="cityoneplants">
</div>
</section>
<div class="cityreset">
<span class="citybutton" id="cityoneresetenvironment">
🔄
</span>
reset
</div>

</section>


<section class="city" id="citytwo">
<input id="citytwoname">
<span class="citybutton" id="citytworesetname">
🔄
</span>
<section class="environment" id="citytwoenvironment">
<div class="sky" id="citytwosky">
</div>
<div class="weather" id="citytwoweather">
</div>
<div class="animals" id="citytwoanimals">
</div>
<div class="plants" id="citytwoplants">
</div>
</section>
<div class="cityreset">
<span class="citybutton" id="citytworesetenvironment">
🔄
</span>
reset
</div>

</section>

<section class="city" id="citythree">
<input id="citythreename">
<span class="citybutton" id="citythreeresetname">
🔄
</span>
<section class="environment" id="citythreeenvironment">
<div class="sky" id="citythreesky">
</div>
<div class="weather" id="citythreeweather">
</div>
<div class="animals" id="citythreeanimals">
</div>
<div class="plants" id="citythreeplants">
</div>
</section>
<div class="cityreset">
<span class="citybutton" id="citythreeresetenvironment">
🔄
</span>
reset
</div>

</section>


</section>
</section>
<script src="scripts/index.js"></script>

</body>
</html>
</html>
Loading