-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_typography.scss
More file actions
68 lines (55 loc) · 1.09 KB
/
Copy path_typography.scss
File metadata and controls
68 lines (55 loc) · 1.09 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* ---------- Headers ---------- */
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
margin-bottom: .5em;
}
h1 {
font-size: 3em; /* 36px / 12px */
}
h2 {
font-size: 2em; /* 24px / 12px */
}
h3 {
font-size: 1.75em; /* 21px / 12px */
}
h4 {
font-size: 1.34em; /*1.5em; 18px / 12px */
}
h5 {
font-size: 1.3em; /* 1.34em; 16px / 12px */
}
h6 {
font-size: 1.17em; /* 14px / 12px */
}
/* ---------- Anchor Tags ----------- */
a {
text-decoration: none;
color: #004DA8;
&:visited {
text-decoration: none;
color: #3A83A7;
}
&:hover {
text-decoration: underline;
color: #0B61A4;
}
}
.broken-link a {
background-image: url('images/broken-link-blue.png');
background-position: right .2em;
background-repeat: no-repeat;
background-size: 14px 14px;
padding-right: 16px;
&:hover:after {
content: "Unfortunately, the site owner no longer maintains this site.";
display: block;
font-size: .5em;
background: none;
position: absolute;
text-decoration: none;
line-height: 1em;
}
&.no-hover:hover:after {
content:"";
}
}