-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.css
76 lines (65 loc) · 985 Bytes
/
main.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
71
72
73
74
75
76
body {
margin: 0;
line-height: 1.65em;
font-family: georgia, serif;
/*font-family: menlo, monospace;*/
/*font-family: helvetica, sans-serif;*/
}
a {
color: #0084e0;
}
.main > * {
transition: opacity 1s;
opacity: 0
}
.in {
opacity: 1;
}
.main {
box-sizing: border-box;
max-width: 600px;
width: 100%;
padding: 20px;
margin: 20px auto;
}
.link {
margin-right: 20px;
position: relative;
text-decoration: none;
}
.link:after {
display: block;
top: 100%;
left: 0;
content: '';
position: absolute;
height: 1px;
width: 0;
background: transparent;
transition: background .3s, width .3s;
}
.link:hover:after {
width: 100%;
background: #0084e0;
}
.avatar {
width: 250px;
height: 250px;
border-radius: 50%;
background-color: #f5f5f5;
background-position: 50% 50%;
background-size: cover;
margin-bottom: 40px;
}
.name {
margin: 0;
}
.tagline {
margin-top: 5px;
font-style: oblique;
font-size: 1.2em;
color: #767676;
}
.text {
text-align: left;
}