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