aboutsummaryrefslogtreecommitdiff
path: root/sass/_footer.scss
blob: cf944e1c93347b87fe8ec8cd75e18d83a0cc4f63 (plain) (blame)
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
footer {
	margin-top: 200*$px;
}
.footer {
	margin: 100*$px auto;
	text-align: center;
}
.social-icons {
	& a {
		cursor: pointer;
		outline: none;
		&:link, &:visited {
			color: inherit;
			text-decoration: none;
			transition: transform .2s;
		}
		&:hover, &:active {
			color: var(--color-primary);
			transform: scale(1.05);
		}
		&:focus {
			color: var(--color-accent);
			transform: scale(1.05);
		}
	}
	& svg {
		max-width: 30*$px;
		max-height: 30*$px;
		fill: currentColor;
	}
	margin-top: 20*$px;
	display: flex;
	gap: 40*$px;
	justify-content: center;
}