forked from rts-cmk-wu06/newsbox-WilliamDeckmann
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
132 lines (107 loc) · 5.15 KB
/
settings.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!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">
<title>newsbox-praktikopgave: settings</title>
<!-- Axios -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- CDN: animate.style -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<!-- Adobe Fonts -->
<link rel="stylesheet" href="https://use.typekit.net/vwf8eyi.css">
<!-- Style -->
<link rel="stylesheet" href="./assets/dist/css/index.css">
</head>
<!-- Body -->
<body class="Body">
<!-- Wrapper -->
<div class="Wrapper" id="Wrapper">
<!-- Main -->
<main class="Main">
<!-- Header -->
<header class="Header">
<a class="Header__link-left" href="./index.html">
<i class="fas fa-chevron-left Header__arrow-left"></i>
</a>
<h1 class="Header__title">
Newsbox
</h1>
</header>
<!-- Settings section -->
<section class="Settings-section">
<!-- Header -->
<header class="Settings-section__header">
<h2 class="Settings-section__title">
Manage
</h2>
<h3 class="Settings-section__sub-title">
Categories
</h3>
</header>
<!-- Settings panel -->
<ul class="Settings-panel" id="Settings-panel">
<li class="Settings-panel__category">
<h2 class="Settings-panel__title uppercase">World</h2>
<button class="Settings-panel__button Settings-panel__button_active" id="Settings-panel__world">
<div class="Settings-panel__container">
</div>
<i class="fas fa-circle Settings-panel__icon"></i>
</button>
</li>
<li class="Settings-panel__category">
<h2 class="Settings-panel__title uppercase">Health</h2>
<button class="Settings-panel__button Settings-panel__button_active" id="Settings-panel__health">
<div class="Settings-panel__container">
</div>
<i class="fas fa-circle Settings-panel__icon"></i>
</button>
</li>
<li class="Settings-panel__category">
<h2 class="Settings-panel__title uppercase">Sports</h2>
<button class="Settings-panel__button Settings-panel__button_active" id="Settings-panel__sports">
<div class="Settings-panel__container">
</div>
<i class="fas fa-circle Settings-panel__icon"></i>
</button>
</li>
<li class="Settings-panel__category">
<h2 class="Settings-panel__title uppercase">Business</h2>
<button class="Settings-panel__button Settings-panel__button_active" id="Settings-panel__business">
<div class="Settings-panel__container">
</div>
<i class="fas fa-circle Settings-panel__icon"></i>
</button>
</li>
<li class="Settings-panel__category">
<h2 class="Settings-panel__title uppercase">Travel</h2>
<button class="Settings-panel__button Settings-panel__button_active" id="Settings-panel__travel">
<div class="Settings-panel__container">
</div>
<i class="fas fa-circle Settings-panel__icon"></i>
</button>
</li>
</ul>
<!-- Footer -->
<footer class="Settings-section__footer">
<!-- Dark mode toggle -->
<button class="Dark-mode-toggle uppercase" id="Dark-mode-toggle">
Toggle dark mode
</button>
<!-- Version info -->
<p class="Version-info">
Version 4.8.15.16.23.42
</p>
</footer>
</section>
</main>
</div>
<!-- JavaScript -->
<script src="./assets/dist/js/load-page.js"></script>
<script src="./assets/dist/js/toggle-dark-mode.js"></script>
<script src="./assets/dist/js/toggle-category.js"></script>
</body>
</html>