-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (105 loc) · 3.64 KB
/
index.html
File metadata and controls
106 lines (105 loc) · 3.64 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="Bool_func/css/home_page.css" />
<link rel="stylesheet" href="Bool_func/css/main.css" />
<link rel="icon" href="Bool_func/images/logo.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=graph_4,table_edit"
/>
<title>Главная страница</title>
</head>
<body>
<h1>Конференция по дискретным структурам. <br />Команда WW.</h1>
<div class="header-buttons">
<div id="logo-circle">
<img src="Bool_func/images/logo.png" />
</div>
<div class="theme-switch-wrapper">
<label
class="theme-switch"
for="theme-checkbox"
aria-label="Переключить тему"
>
<input
type="checkbox"
id="theme-checkbox"
class="theme-switch__input"
/>
<div class="theme-switch__container">
<div class="theme-switch__toggle">
<svg
class="theme-switch__icon"
viewBox="0 0 24 24"
width="16"
height="16"
>
<path
fill="currentColor"
d="M12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6A6,6 0 0,1 18,12A6,6 0 0,1 12,18M20,15.31L23.31,12L20,8.69V4H15.31L12,0.69L8.69,4H4V8.69L0.69,12L4,15.31V20H8.69L12,23.31L15.31,20H20V15.31Z"
/>
</svg>
</div>
<div class="theme-switch__icons">
<svg
class="theme-switch__icon-sun"
viewBox="0 0 24 24"
width="16"
height="16"
>
<path
fill="currentColor"
d="M12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6A6,6 0 0,1 18,12A6,6 0 0,1 12,18M20,15.31L23.31,12L20,8.69V4H15.31L12,0.69L8.69,4H4V8.69L0.69,12L4,15.31V20H8.69L12,23.31L15.31,20H20V15.31Z"
/>
</svg>
<svg
class="theme-switch__icon-moon"
viewBox="0 0 24 24"
width="16"
height="16"
>
<path
fill="currentColor"
d="M12,18C11.11,18 10.26,17.8 9.5,17.45C11.56,16.5 13,14.42 13,12C13,9.58 11.56,7.5 9.5,6.55C10.26,6.2 11.11,6 12,6A6,6 0 0,1 18,12A6,6 0 0,1 12,18Z"
/>
</svg>
</div>
</div>
</label>
</div>
</div>
<div class="button-container">
<div class="button-description">
<button
id="play"
onclick="()=>{e.preventDefault()
window.location.href = 'zads.html'}"
>
<span class="material-symbols-outlined"> table_edit </span>
</button>
<p>Булевы Функции</p>
</div>
<div class="button-description">
<button
id="graph"
onclick="()=>{e.preventDefault()
window.location.href = 'Graphs/graph.html'}"
>
<span class="material-symbols-outlined" style="color: #e3e3e3">
graph_4
</span>
</button>
<p>Графы</p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js"></script>
<script src="Bool_func/js/index.js"></script>
</body>
</html>