File size: 707 Bytes
6ed031c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

.custom-subheader {
  background-color: navy;
  color: white;
  padding: 10px;
}

.custom-subheader h2 {
  font-size: 15px;
}

.custom-subheader-left {
    position: relative;
    padding-left: 15px;
}

.custom-subheader-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background-color: navy;
}

.custom-subheader-left h2 {
    font-size: 20px;
}

.custom-subheader-left h3 {
  font-size: 15px;
}


.button-link {
  display: inline-block;
  padding: 5px 10px;
  color: green;
  text-decoration: none;
  border: 1px solid lightgray;
  font-weight: bold;
  border-radius: 4px;
}

.button-link:hover {
  background-color: lightgrey;
}