-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 1010 Bytes
/
style.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
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
.profile-pic {
border-radius: 50%;
height:367px;
width: 300px;
}
html, body{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
margin: 0px;
padding: 0px;
background: linear-gradient(to bottom, rgba(170, 221, 235, 1) 0%, rgba(231, 240, 245, 1) 100%);
}
.name, .subtitle{
font-family: 'Fjalla One', sans-serif;
margin-bottom: 2px;
}
.subtitle {
font-style: italic;
}
.intro {
font-family: 'Cormorant', serif;
font-size: 25px;
}
.wrapper {
max-width: 100%;
display: flex;
flex-direction: row;
height: 80%;
}
.left, .right {
margin: 5px;
max-width: 50%;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.left {
align-items: center;
justify-content: center;
color: black;
}
.links {
padding-left: 0px;
font-size: 18px;
}
.links li {
margin-right: 8px;
display: inline-block;
}
.links a {
padding: 4px;
text-decoration: none;
}
.links a:hover {
background-color: rgba(0, 0, 0, 0.2);
}