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