-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.68 KB
/
index.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
<!DOCTYPE html>
<html lang="ru">
<head>
<link rel="shortcut icon" type="image/x-icon" href="/barcode.ico"><meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styles.css">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<title>Romanov — Gradients</title>
</head>
<body>
<div class="container">
<h1>Romanov — Gradients</h1>
<h1 class="sub-text" style="font-family: 'Montserrat', sans-serif;">
Текущий цвет:
<span id="random-color">#4281cb</span> &
<span id="random-color-2">#7a07e0</span>
</h1>
<div class="container_bottom">
<div class="row top">
<div class="text">Угол:</div>
<div class="quantity">
<input class="deg_value" type="number" width="10" value="90" max="359" min="1" autofocus>
</div>
<div class="deg">deg</div>
</div>
<div class="row">
<button class="btn sm ghost" onclick="randomColor()">Новый градиент</button>
<a onclick="copyColors()">
<i class="fas fa-copy ghost data-ctc"></i>
</a>
</div>
<ul class="history">
</ul>
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="script.js"></script>
</html>