-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathfeedback.html
129 lines (112 loc) · 4 KB
/
feedback.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A big fish tracker for FF14 that uses rarity to sort" />
<meta name="author" content="Carbuncle Plushy (Balmung)" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>FFX|V Fish Tracker App - Feedback</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XYY4Q1MGX8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XYY4Q1MGX8');
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.10/semantic.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.10/semantic.min.js"></script>
<!-- Semantic UI Overrides -->
<style type="text/css">
.main.container {
padding-top: 3em;
}
/* Large Monitor */
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
.ui.container {
width: 1127px;
margin-left: auto !important;
margin-right: auto !important;
}
.ui.grid.container {
width: calc( 1127px + 2rem ) !important;
}
.ui.relaxed.grid.container {
width: calc( 1127px + 3rem ) !important;
}
.ui.very.relaxed.grid.container {
width: calc( 1127px + 5rem ) !important;
}
}
/* Even larger Monitor */
@media only screen and (min-width: 1500px) {
.ui.container {
width: 1427px;
margin-left: auto !important;
margin-right: auto !important;
}
.ui.grid.container {
width: calc( 1427px + 2rem ) !important;
}
.ui.relaxed.grid.container {
width: calc( 1427px + 3rem ) !important;
}
.ui.very.relaxed.grid.container {
width: calc( 1427px + 5rem ) !important;
}
}
/* Overrides for Semantic UI 2.2.10 - Icon */
i.icon {
margin: inherit !important;
}
/* Overrides for Semantic UI 2.2.10 - Button */
.ui[class*="very compact"].buttons .button,
.ui[class*="very compact"].button {
padding: 0.58928571em 0.58928571em 0.58928571em;
}
.ui[class*="very compact"].table th {
padding: 0.2em 0.3em;
}
.ui[class*="very compact"].table td {
padding: 0.2em 0.3em;
}
[data-tooltip]:before {
z-index: 1102;
}
[data-tooltip]:after {
z-index: 1101;
}
</style>
</head>
<body>
<div id="topmenu" class="ui text top fixed menu" style="background-color: white;">
<div class="ui container">
<div class="header item"><a href="/">FFX|V Fish Tracker App</a></div>
</div>
</div>
<div class="ui main container">
<h1>FFX|V Fish Tracker App</h1>
<p>Please leave comments, kudos, questions, corrections, etc. below:</p>
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = "http://ff14fish.carbuncleplushy.com/";
this.page.identifier = "carby-ffxiv-fish-tracker";
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://carby-ffxiv-fish-tracker.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
<div class="ui container">
<p>
FINAL FANTASY is a registered trademark of Square Enix Holdings Co., Ltd.<br/>
FINAL FANTASY XIV © 2010 - 2024 SQUARE ENIX CO., LTD. All Rights Reserved.
</p>
</div>
</body>