-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (66 loc) · 3.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Border Radius Previewer</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="css/styles.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Roboto" rel="stylesheet">
<script src="node_modules/clipboard/dist/clipboard.js"></script>
</head>
<body>
<div class="App">
<header class="App-header">
<h1 class="title-border">Border radius previewer</h1>
<div id="box_example" class="box-example">
</div>
</header>
<div class="bottom-container">
<div class="input-container">
<form id="form-border">
<div class="form-group">
<label for="box_width">Width: </label>
<input type="text" class="form-control" name="box_width" id="box_width" placeholder="150px">
</div>
<div class="form-group">
<label for="box_height">Height: </label>
<input type="text" class="form-control" name="box_height" id="box_height" placeholder="150px">
</div>
<div class="form-group">
<label for="border_radius">Border radius: </label>
<input type="text" class="form-control" name="border_radius" id="border_radius" placeholder="x x x x / x x x x">
</div>
<button type="submit" class="btn btn-primary" onclick="Enviar();">Submit</button>
</form>
</div>
<div class="ads-container">
<form id="form-extract">
<div class="form-group">
<label for="clipboard">Clipboard</label>
<textarea class="form-control" id="clipboard" rows="4"></textarea>
</div>
<button type="submit" class="btn btn-secondary" id="extract-btn">Extract</button>
</form>
</div>
</div>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>