-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (72 loc) · 1.57 KB
/
style.css
File metadata and controls
72 lines (72 loc) · 1.57 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #74EBD5;
}
.blockquote-wrapper {
display: flex;
height: 100vh;
}
.blockquote {
position: relative;
color: #2e6057;
font-family: 'Staatliches', cursive;
max-width: 450px;
margin: 80px auto;
align-self: center;
padding: 11rem 1rem 14rem;
overflow: hidden;
}
.blockquote h1 {
color: #224841;
position: relative;
font-size: 2.5rem;
font-weight: normal;
line-height: 0.8;
margin: 0;
z-index: 1;
}
h1 span {
color: #2e6057;
}
.blockquote h1:after {
content:"’";
position: absolute;
top: -3rem;
left: 0;
font-size: 100rem;
line-height: 0.7;
color: rgba(206, 255, 246, 0.5);
text-shadow: -3rem -3rem 0 rgba(206, 255, 246, 0.2);
z-index: -1;
}
.blockquote h1:before {
content:"’";
position: absolute;
top: 0;
left: 3rem;
font-size: 100rem;
line-height: 0.7;
color: rgba(206, 255, 246, 0.8);
text-shadow: 3rem 3rem 0 rgba(206, 255, 246, 0.5);
z-index: -1;
}
.blockquote h4 {
position: relative;
color: #224841;
font-size: 1.2rem;
font-family: 'Oswald', sans-serif;
font-weight: normal;
line-height: 1.1;
margin: 0;
padding-top: 1.5rem;
z-index: 1;
}
.blockquote h4 a {
color: #224841;
font-size: 0.9rem;
text-decoration: none;
}