-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path_font-modifiers.scss
79 lines (59 loc) · 2.05 KB
/
_font-modifiers.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
79
// Modifiers to make fonts look crazier
// Font Outlines
@mixin aesthetic-font-modifier-outline {
font-weight: bold;
color: $aesthetic-white;
// How to do the outline:
// https://stackoverflow.com/questions/4919076/outline-effect-to-text
}
.aesthetic-font-modifier-outline-black {
@include aesthetic-font-modifier-outline;
text-shadow:
-1px -1px 1px $aesthetic-black,
1px -1px 1px $aesthetic-black,
-1px 1px 1px $aesthetic-black,
1px 1px 1px $aesthetic-black;
}
.aesthetic-font-modifier-outline-pink {
@include aesthetic-font-modifier-outline;
text-shadow:
-1px -1px 1px $aesthetic-pink,
1px -1px 1px $aesthetic-pink,
-1px 1px 1px $aesthetic-pink,
1px 1px 1px $aesthetic-pink;
}
.aesthetic-font-modifier-outline-purple {
@include aesthetic-font-modifier-outline;
text-shadow:
-1px -1px 1px $aesthetic-purple,
1px -1px 1px $aesthetic-purple,
-1px 1px 1px $aesthetic-purple,
1px 1px 1px $aesthetic-purple;
}
// Font Gradients
@mixin aesthetic-font-modifier-gradient {
color: transparent;
-webkit-background-clip: text;
background-clip: text;
display: inline;
}
.aesthetic-font-modifier-gradient-arizona {
@include aesthetic-font-modifier-gradient;
background-image: linear-gradient(to left, $aesthetic-arizona-pink, $aesthetic-arizona-lime, $aesthetic-arizona-green, $aesthetic-arizona-blue);
}
.aesthetic-font-modifier-gradient-pink-blue {
@include aesthetic-font-modifier-gradient;
background-image: linear-gradient(to right, $aesthetic-pink, $aesthetic-blue);
}
.aesthetic-font-modifier-gradient-pink-green {
@include aesthetic-font-modifier-gradient;
background-image: linear-gradient(to right, $aesthetic-pink, $aesthetic-green);
}
.aesthetic-font-modifier-gradient-green-pink {
@include aesthetic-font-modifier-gradient;
background-image: linear-gradient(to right, $aesthetic-green, $aesthetic-pink);
}
.aesthetic-font-modifier-gradient-purple-blue {
@include aesthetic-font-modifier-gradient;
background-image: linear-gradient(to right, $aesthetic-purple, $aesthetic-blue);
}