-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (58 loc) · 1.1 KB
/
style.css
File metadata and controls
69 lines (58 loc) · 1.1 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
style {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
font-family: Times, serif;
color: white;
background-color: rgb(28, 38, 46);
}
.container {
max-width: 90rem;
margin: 2rem auto;
padding: 0px 2rem;
}
.header {
padding: 2rem;
margin: 1rem 0px;
text-align: center;
}
header > .title {
margin-bottom: 1rem;
}
.tribute {
display: grid;
grid-template-columns: 2fr;
max-width: 48rem;
margin: 0px auto;
background: rgb(60, 74, 80);
color: rgb(255, 255, 255);
align-items: center;
padding: 0px 0px 0px 1rem;
}
.tribute blockquote {
text-align: center;
font-size: 3rem;
}
.bio {
margin: 2rem auto;
padding: 0px 0.5rem;
max-width: 40rem;
}
.bio img{
max-width: 100%;
height: auto;
}
.bio > h2 {
margin-bottom: 1rem;
font-size: 3rem;
line-height: 1.2;
}
.bio > p {
font-size: 1.2rem;
line-height: 1.4;
}
.bio > hr {
margin-top: 2rem;
}