Subversion Repositories archerygear

Rev

Rev 8 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 - 1
/* Add a gray background color and some padding to the footer */
2
footer {
3
    background-color: #f2f2f2;
4
    padding: 25px;
5
}
6
 
10 - 7
/* color contrast */
8
.bg-info{background-color: #128091 !important;}
9
.bg-success{background-color: #218739 !important;}
10
.nav-link{color: #fff; color: rgba(255,255,255,.8) !important;}
11
a:link{color:#006ADB !important}
12
h3 {color:#fff;}
13
 
1 - 14
/* iframe */
15
iframe {
16
    overflow: hidden;
17
    border-style: none;
5 - 18
}
19
 
20
/* youtube responsive video 16:9 */
21
.videoWrapper {
22
    position: relative;
23
    padding-bottom: 56.25%; /* 16:9 */
24
    padding-top: 25px; height: 0;
25
}
26
.videoWrapper iframe {
27
    position: absolute;
28
    top: 0;
29
    left: 0;
30
    width: 100%;
31
    height: 100%;
32
}
8 - 33
 
34
/* Floating Top Button */
35
#topBtn {
36
    display: none;
37
    position: fixed;
38
    bottom: 20px;
39
    right: 30px;
40
    z-index: 99;
41
    border: none;
42
    outline: none;
43
    background-color: red;
44
    color: white;
45
    cursor: pointer;
46
    padding: 15px;
47
    border-radius: 10px;
48
    font-size: 18px;
49
}
50
 
51
#topBtn:hover {
52
    background-color: #555;
53
}
54
 
55
/* Collapsible Table of Contents */
56
.collapsible {
57
  background-color: #777;
58
  color: white;
59
  cursor: pointer;
60
  padding: 18px;
61
  width: 100%;
62
  border: none;
63
  text-align: left;
64
  outline: none;
65
  font-size: 2rem;
66
}
67
 
68
.active, .collapsible:hover {
69
  background-color: #555;
70
}
71
 
72
.collapsible:after {
73
  font-family: 'FontAwesome';
74
  content: "\f150";
75
  font-size: 2rem;
76
  color: white;
77
  float: right;
78
  margin-left: 5px;
79
}
80
 
81
.active:after {
82
  font-family: 'FontAwesome';
83
  content: "\f151";
84
}
85
 
86
.tocContent {
87
  padding: 0 18px;
88
  max-height: 0;
89
  overflow: hidden;
90
  transition: max-height 0.2s ease-out;
91
  background-color: #f1f1f1;