-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (100 loc) · 1.53 KB
/
style.css
File metadata and controls
120 lines (100 loc) · 1.53 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial;
color: white;
background-color: black;
}
.container {
max-width: 90rem;
margin: 2rem auto;
padding: 0 2rem;
}
.description {
font-size: 2rem;
}
.hidden {
padding: 2rem;
margin: 1rem 0;
text-align: center;
}
.hidden > .title {
margin-bottom: 1rem;
}
.tribute {
display: grid;
grid-template-columns: 2fr 1fr;
max-width: 78rem;
margin: 0 auto;
background-color: white;
color: black;
align-items: center;
padding: 0 0 0 1rem;
}
.tribute blockquote {
text-align: center;
font-size: 2.1rem;
}
.quote {
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-size: 3rem;
}
.bio {
margin: 2rem auto;
padding: 0 0.5rem;
max-width: 1000px;
}
.bio > h2 {
margin-bottom: 1rem;
font-size: 3rem;
line-height: 1.2;
}
.bio > h5 {
font-size: 2rem;
padding-bottom: 10px;
}
.bio > p {
font-size: 1.2rem;
line-height: 1.4;
}
.bio > hr {
margin-top: 2rem;
margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
.container {
margin: 1rem auto;
padding: 0 1rem;
}
}
@media screen and (max-width: 768px) {
.tribute {
display: block;
}
.tribute blockquote {
font-size: 1.8rem;
}
.quote {
font-size: 2.5rem;
}
}
@media screen and (max-width: 576px) {
.bio > h2 {
font-size: 2.5rem;
}
.bio > h5 {
font-size: 1.8rem;
}
.bio > p {
font-size: 1.1rem;
}
}
.bio > h2,
.bio > h5,
.bio > p {
margin-bottom: 1rem;
}