-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
96 lines (79 loc) · 1.83 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<title>Path Finder</title>
<script src="index.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet"/>
<style>
html {
background-color: #f8f8f8;
}
body {
font-family: 'Work Sans', sans-serif;
min-width: 320px;
color: #333333;
line-height: 19px;
font-size: 13px;
margin: 0;
}
small {
background-color: #ffffff;
display: block;
margin-top: 10px;
opacity: 0.7;
font-size: 12px;
}
ul {
padding-left: 25px;
}
.love {
color: red;
font-size: 15px;
}
.love,
a {
display: inline-block;
vertical-align: middle;
}
button {
border: 0;
background-color: transparent;
border: 1px solid #000000;
padding: 8px 15px;
color: #000000;
border-radius: 5px;
box-shadow: none;
cursor: pointer;
transition: all 200ms;
text-decoration: underline;
}
button:hover {
background-color: #000000;
color: #ffffff;
text-decoration: none;
}
.cta {
text-align: center;
}
.p10 {
padding: 10px;
}
</style>
</head>
<body>
<div class="p10">
<div>You are only one click away to get an HTML element that does exist the page unique CSS selector.</div>
<ul>
<li>Click the below button to start inspection</li>
<li>Click any HTML element</li>
<li>The unique CSS selector will be copied to clipboard</li>
</ul>
<div class="cta">
<button id="selectElement">make sth feel unique</button>
</div>
</div>
<small class="p10">
Built with <span class="love">♥</span> of <a href="https://en.wikipedia.org/wiki/Ahmet_Kaya" target="_blank">Ahmet Kaya</a>
</small>
</body>
</html>