-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 920 Bytes
/
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
<html>
<body>
<img src="img/128.png" alt="Otto" width="80" height="80">
<input type="text" id="jiraUrl" placeholder="https://yourjiraurl.atlassian.com" class="input" />
<button
id="saveJiraUrl"
class="submit"
>
Save
</button>
<div id="saved"></div>
<script src="js/main.js"> </script>
</body>
<style>
body {
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:5px;
width:200px;
padding:8px;
}
.input{
width:100%;
border-radius:5px;
border:1px solid #ccc;
padding:10px;
font-size:12px;
margin-bottom:2px;
}
.submit {
background-color: #000;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius:5px;
width:100%;
}
.submit:hover{
background-color:#333;
cursor:pointer;
}
</style>
</html>