-
Notifications
You must be signed in to change notification settings - Fork 1
/
setting.html
113 lines (102 loc) · 5.53 KB
/
setting.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Setting</title>
<link rel="stylesheet" type="text/css" href="Scss/home.css" />
<link rel="stylesheet" href="Scss2/setting.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- FAVICON -->
<link rel="icon" type="image/x-icon" href="Img/logo/PixelPlay.png" />
<!-- Css animation -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Aos animation -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- Bootstrap CSS v5.2.1 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<!-- Add the slick-theme.css for default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free/css/all.min.css">
</head>
<body>
<body>
<div class="container">
<nav>
<h1 class="settingsP">Settings</h1>
<div class="theme-toggle">
<button id="theme-toggle-btn">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</button>
</div>
<div class="close-box">
<i class="fas fa-window-close" id="close-setting-sec"></i>
</div>
</nav>
<div class="main">
<div class="above-hr">
<h5 class="languageP">Language</h5>
<p class="languagePP">Let us know which language you're most comfortable using. You can change it back at any time.</p>
<div class="language-box">
<select name="" id="">
<option value="EN" class="option1">English</option>
<option value="IT" class="option2">Italian</option>
<option value="ES" class="option3">Spanish</option>
</select>
</div>
</div>
<hr>
<div class="under-hr">
<div class="autoplay-box">
<div class="autoplay-caption">
<h5 class="autoplayP">Autoplay videos</h5>
<p class="autoplayPP">Choose if you want to autoplay in your browser.</p>
</div>
<div class="slide1">
<input type="checkbox" value="None" id="slide1" name="check" checked />
<label for="slide1"></label>
</div>
</div>
<div class="showphotos-box">
<div class="showphotos-caption">
<h5 class="showP">Notification</h5>
<p class="showPP">Turn on and of the Notification</p>
</div>
<div class="slide2">
<input type="checkbox" value="None" id="slide2" name="check" checked />
<label for="slide2"></label>
</div>
</div>
<div class="btns-box">
<button class="btn-save">Save</button>
<button class="btn-cancel">Cancel</button>
</div>
</div>
</div>
<div class="saved-box">
<p class="savedP">Saved!</p>
</div>
</div>
<script src="script.js"></script>
</body>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/setting.js"></script>
</body>
</html>