-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
90 lines (75 loc) · 1.19 KB
/
Copy pathindex.css
File metadata and controls
90 lines (75 loc) · 1.19 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
body {
font-family: 'Montserrat', sans-serif;
display: flex;
justify-content: center;
background-color:rgb(255, 248, 240);
margin-bottom: 200px;
height: 100%;
font-size: 16px;
}
.content {
margin: 3rem;
max-width: 800px;
height: 100%;
width: 90%;
}
h1 {
font-weight: 400;
font-size: 2.2rem;
}
h2 {
font-weight: 400;
font-size: 1.8rem;
}
h3 {
font-weight: 500;
font-size: 1.4rem;
}
p {
font-size: 1.1rem;
font-weight: 400;
line-height: 1.6;
}
.profile-pic {
width: min(20rem, 90%);
height: auto;
border: 8px solid rgb(155, 148, 140);
border-radius: 32px;
}
a {
text-decoration: none;
color: rgb(155, 148, 140);
}
a sup {
padding: 0 2px;
color: rgb(155, 148, 140);
font-size: 0.8rem;
}
.links {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgb(155, 148, 140);
}
.links p {
line-height: 1.8;
}
.links a {
text-decoration: none;
color: rgb(155, 148, 140);
}
.links a:hover {
text-decoration: underline;
}
@media screen and (max-width: 480px) {
.content {
margin: 1.5rem;
}
body {
margin-bottom: 100px;
}
.profile-pic {
width: min(16rem, 70%);
border-width: 6px;
border-radius: 24px;
}
}