-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday7.html
66 lines (57 loc) · 2.56 KB
/
day7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Silkscreen&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles7.css">
<title>30DAYSOFCODE</title>
</head>
<body onload="askName()">
<nav id="navManipulation">
<h1 class="navLogo">30DAYSOFCODE</h1>
<ul class="navItems">
<a href="index.html"><li><<</li></a>
<a id="toPrevious"><li><</li></a>
<a id="toNext"><li>></li></a>
<a href="day30.html"><li>>></li></a>
<a><li id="myBtn">Preferences</li></a>
</ul>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p class="modal-text">Choose your banner color:</p>
<span id="red">Red</span>
<span id="blue">Blue</span>
<span id="yellow">Yellow</span>
<span id="green">Green</span>
<span id="black">Black</span>
<p class="modal-text">Choose your text color:</p>
<span id="textred">Red</span>
<span id="textblue">Blue</span>
<span id="textyellow">Yellow</span>
<span id="textgreen">Green</span>
<span id="textblack">Black</span>
<span id="textwhite">White</span>
</div>
</div>
</nav>
<section id="textManipulation" class="container">
<h2>Day <span id="pageIdentify">7</span></h2>
<p id="greeting"></p>
<p>Today is day 7. My plan for today is to bring the preferences functionality into the mobile view of the application. I'd like to have a "gear" button that expands the preferences modal into full screen, with an "X" to close it out and continue browsing.</p>
<p>
If I complete that, and am good with how it functions, I'll move onto creating other customizable elements for the site, such as font-styles, or text color.<br><br>
- 45 minutes remaining - <br><br>
I've got the mobile styling corrected, and I've added a text color preference as well. I'm going to go ahead and push to GitHub and test to make sure everything is functioning in a web enviroment as expected.
</p>
</section>
<button class="darkModeButton" id="darkModeButton" onclick="darkModeSwitch()">☽</button>
</body>
<script src="script.js"></script>
</html>