blob: c85746ca4be3d28395cd8b85cece8f98f83896e7 (
plain)
1 /**
2 * Resume author and author-details styles
3 */
4 div#resume-author-sect { text-align:center; }
5
6 div#resume-author-name,
7 div#resume-author-contact {
8 display:inline-block;
9 padding:0rem 3rem;
10 }
11
12 /* Author right side, containing author email, phone, website, etc */
13 div#resume-author-contact {
14 border-left:2px dotted #ccc;
15 }
16
17 /* Author left side, containing author name */
18 div#resume-author-name {
19 font-size:4.2em;
20 font-weight:200;
21 letter-spacing:-.05em;
22 vertical-align:top;
23 margin-top:.20em;
24 line-height:1em;
25 color:#555;
26 }
27
28 div#resume-author-contact ul {
29 list-style-type:none;
30 margin:0;
31 padding:0;
32 }
33
34 div#resume-author-contact ul li,
35 div#resume-author-contact ul li a{
36 text-decoration:none;
37 font-family:mono;
38 color:#555;
39 white-space:pre;
40 }
41
42 div#resume-author-contact ul li a:hover{
43 text-decoration:underline;
44 }
|