Martin L (GitHub Actions) commited on
Commit
26e8c80
·
1 Parent(s): 90e8586

Automated deployment from GitHub (source commit: 51f610)

Browse files
Files changed (2) hide show
  1. index.html +6 -0
  2. style.css +16 -0
index.html CHANGED
@@ -39,6 +39,12 @@
39
  <input type="file" id="gt-file-input" accept=".json" hidden>
40
  <button id="btn-export" title="Save as .gt.json (all strokes must be annotated)">Save .gt.json</button>
41
  </div>
 
 
 
 
 
 
42
  </header>
43
 
44
  <div id="main-content">
 
39
  <input type="file" id="gt-file-input" accept=".json" hidden>
40
  <button id="btn-export" title="Save as .gt.json (all strokes must be annotated)">Save .gt.json</button>
41
  </div>
42
+ <div class="toolbar-group">
43
+ <a id="link-guide" class="toolbar-link"
44
+ href="https://lellep.xyz/xournalpp_htr/annotation_guide/"
45
+ target="_blank" rel="noopener noreferrer"
46
+ title="Annotation conventions: classes, rules and workflow">Annotation Guide</a>
47
+ </div>
48
  </header>
49
 
50
  <div id="main-content">
style.css CHANGED
@@ -75,6 +75,22 @@ button:active {
75
  transform: scale(0.97);
76
  }
77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  .tool-btn.active {
79
  background: var(--accent);
80
  border-color: var(--accent);
 
75
  transform: scale(0.97);
76
  }
77
 
78
+ .toolbar-link {
79
+ padding: 6px 12px;
80
+ border: 1px solid var(--border);
81
+ border-radius: 4px;
82
+ background: var(--bg-tertiary);
83
+ color: var(--text-primary);
84
+ font-size: 13px;
85
+ white-space: nowrap;
86
+ text-decoration: none;
87
+ }
88
+
89
+ .toolbar-link:hover {
90
+ background: var(--accent);
91
+ border-color: var(--accent);
92
+ }
93
+
94
  .tool-btn.active {
95
  background: var(--accent);
96
  border-color: var(--accent);