-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_links.scss
78 lines (71 loc) · 1.45 KB
/
_links.scss
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
69
70
71
72
73
74
75
76
77
78
a {
color: $text-color;
text-decoration: none;
&:hover {
color: $theme-color;
text-decoration: none;
}
}
article a, .news a {
color: $theme-color;
&:hover {
text-decoration: underline;
}
}
.social a {
color: $text-color;
&:hover { color: $theme-color; }
}
// a {
// color: $link-color;
// background-image: linear-gradient(to top,
// rgba(0,0,0,0) 13%,
// rgba($link-color,.8) 13%,
// rgba($link-color,.8) 18%,
// rgba(0,0,0,0) 17%
// );
// text-shadow: white 1px 0px 0px, white -1px 0px 0px;
// }
//
// a:hover,
// a:focus,
// a:active {
// border: 0;
// color: $link-hover-color;
// text-decoration: none;
// background-image: linear-gradient(to top,
// rgba(0,0,0,0) 13%,
// rgba($link-hover-color,.8) 13%,
// rgba($link-hover-color,.8) 17%,
// rgba(0,0,0,0) 17%
// );
// text-shadow: white 1px 0px 0px, white -1px 0px 0px;
// }
//
// // Correct issues with buttons
// button,
// .button {
// text-shadow: none;
// background-image: none;
// }
//
// .button:hover,
// .button:focus,
// .button:active {
// color: white;
// text-shadow: none;
// background-image: none;
// }
//
// .anchorjs-link {
// text-shadow: none;
// background-image: none;
// }
// .anchorjs-link:hover,
// .anchorjs-link:focus,
// .anchorjs-link:active{
// border: 0;
// color: $link-hover-color;
// text-shadow: none;
// background-image: none;
// }