ysharma HF staff commited on
Commit
a6ee94b
1 Parent(s): a2dca9f
Files changed (1) hide show
  1. style.css +6 -0
style.css CHANGED
@@ -62,3 +62,9 @@ a {text-decoration-line: underline; font-weight: 600;}
62
  overflow-anchor: auto;
63
  height: 1px;
64
  }*/
 
 
 
 
 
 
62
  overflow-anchor: auto;
63
  height: 1px;
64
  }*/
65
+ #help_text {
66
+ display: none; /* initially hidden */
67
+ }
68
+ #help_text:target {
69
+ display: block; /* show when the link is clicked */
70
+ }