-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsandbox.css
34 lines (29 loc) · 897 Bytes
/
sandbox.css
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
/* ========================================
CODE YOUR STYLES BELOW!
====================================== */
.shadow-typo {
position: relative;
display: inline-block;
font-size: 6rem;
color: #00b3b4;
text-transform: uppercase;
text-shadow: 3px 3px 0px #e7eef1, 8px 8px 0px rgba(0,0,0,0.1);
}
.threedee-typo {
font-size: 6rem;
color: #f2395a;
text-transform: uppercase;
transform: skew(-5deg, -5deg) rotate(5deg);
transform-origin: center center;
text-shadow: 1px 1px #d10e31,
2px 2px #d10e31,
3px 3px #d10e31,
4px 4px #d10e31,
5px 5px #d10e31,
6px 6px #d10e31,
7px 7px #d10e31,
8px 8px #890920,
9px 9px #890920,
10px 10px #890920,
11px 11px 15px rgba(0,0,0,0.1);
}