Subversion Repositories archerygear

Rev

Rev 6 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 8
Line 21... Line 21...
21
    top: 0;
21
    top: 0;
22
    left: 0;
22
    left: 0;
23
    width: 100%;
23
    width: 100%;
24
    height: 100%;
24
    height: 100%;
25
}
25
}
-
 
26
 
-
 
27
/* Floating Top Button */
-
 
28
#topBtn {
-
 
29
    display: none;
-
 
30
    position: fixed;
-
 
31
    bottom: 20px;
-
 
32
    right: 30px;
-
 
33
    z-index: 99;
-
 
34
    border: none;
-
 
35
    outline: none;
-
 
36
    background-color: red;
-
 
37
    color: white;
-
 
38
    cursor: pointer;
-
 
39
    padding: 15px;
-
 
40
    border-radius: 10px;
-
 
41
    font-size: 18px;
-
 
42
}
-
 
43
 
-
 
44
#topBtn:hover {
-
 
45
    background-color: #555;
-
 
46
}
-
 
47
 
-
 
48
/* Collapsible Table of Contents */
-
 
49
.collapsible {
-
 
50
  background-color: #777;
-
 
51
  color: white;
-
 
52
  cursor: pointer;
-
 
53
  padding: 18px;
-
 
54
  width: 100%;
-
 
55
  border: none;
-
 
56
  text-align: left;
-
 
57
  outline: none;
-
 
58
  font-size: 2rem;
-
 
59
}
-
 
60
 
-
 
61
.active, .collapsible:hover {
-
 
62
  background-color: #555;
-
 
63
}
-
 
64
 
-
 
65
.collapsible:after {
-
 
66
  font-family: 'FontAwesome';
-
 
67
  content: "\f150";
-
 
68
  font-size: 2rem;
-
 
69
  color: white;
-
 
70
  float: right;
-
 
71
  margin-left: 5px;
-
 
72
}
-
 
73
 
-
 
74
.active:after {
-
 
75
  font-family: 'FontAwesome';
-
 
76
  content: "\f151";
-
 
77
}
-
 
78
 
-
 
79
.tocContent {
-
 
80
  padding: 0 18px;
-
 
81
  max-height: 0;
-
 
82
  overflow: hidden;
-
 
83
  transition: max-height 0.2s ease-out;
-
 
84
  background-color: #f1f1f1;