Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_icon.scss « components « sass « assets - github.com/caressofsteel/hugo-story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc1e94334e5ee32704e7d33744d143313676a89e (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
	Hugo Story by CaressOfSteel
	A (modular, highly tweakable) responsive one-page theme for Hugo.
	Ported from Story by HTML5UP.
	This Hugo theme is licensed under the Creative Commons Attribution 3.0 License.
*/

/* Icon */

	.icon {
		@include icon;
		border-bottom: none;
		position: relative;
		text-align: center;

		> .label {
			display: none;
		}

		&:before {
			line-height: inherit;
		}

		&.solid {
			&:before {
				font-weight: 900;
			}
		}

		&.brands {
			&:before {
				font-family: 'Font Awesome 5 Brands';
			}
		}

		&.style2 {
			&:before {
				border-radius: 2.75em;
				display: inline-block;
				height: 2.75em;
				line-height: 2.75em;
				width: 2.75em;
			}
		}

		&.major {
			display: block;
			margin: 0 0 (_size(element-margin) * 0.5) 0;

			&:before {
				font-size: 1.25rem;
			}
		}
	}

	a.icon {
		&.style2 {
			&:before {
				@include vendor('transition', (
					'background-color #{_duration(transition)} ease-in-out',
					'box-shadow #{_duration(transition)} ease-in-out',
					'color #{_duration(transition)} ease-in-out'
				));
			}
		}
	}

	@mixin color-icon($p: null) {
 		.icon {
 			&.style2 {
 				&:before {
					box-shadow: inset 0 0 0 _size(border-width) _palette($p, border);
 				}
 			}
 		}

		a.icon {
			&.style2 {
				&:hover {
					&:before {
						box-shadow: inset 0 0 0 _size(border-width) _palette($p, accent);
						color: _palette($p, accent);
					}
				}

				&:active {
					&:before {
						background-color: transparentize(_palette($p, accent), 0.9);
						box-shadow: inset 0 0 0 _size(border-width) _palette($p, accent);
						color: _palette($p, accent);
					}
				}
			}
		}
	}

	@include color-icon;