-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
144 lines (117 loc) · 2.07 KB
/
style3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body, .details {
background: #ccc;
}
.hide {
position: absolute;
display: block;
top: -9999em;
left: -9999em;
}
.clear { clear: both; }
.half {
float: left;
width: 50%;
}
.header, .experiences, .details {
padding: 20px;
}
.header {
background: #222;
color: white;
top: 0;
left: 0;
right: 0;
position: fixed;
height: 160px;
/* rgba is a different way of expressing color in
terms of its RGB components with Alpha (transparency) */
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
text-shadow: 1px 1px 0 #000;
}
.header .name {
float: left;
width: 300px;
}
.header h1 {
font-size: 42px;
margin-bottom: 10px;
}
.header h2 {
font-family: "Georgia", Serif;
font-weight: normal;
font-style: italic;
color: #666;
}
.header dl {
float: right;
margin: 0;
}
.experiences {
background: #eee;
margin-top: 170px;
}
.experiences h3 {
font-size: 30px;
line-height: 36px;
margin: 0 -20px 20px -20px;
padding: 0 20px 10px 20px;
border-bottom: 1px solid #ccc;
}
.experiences h4 {
float: left;
}
.experiences h5,
.experiences h6 {
float: right;
}
.experiences h6 {
clear: right;
}
.experiences ul {
clear: both;
margin-top: 10px;
margin-bottom: 20px;
}
.skills h3, .education h3 {
font-family: Georgia, Serif;
font-weight: normal;
font-size: 24px;
}
.skills ul {
list-style-type: none;
margin: 0 0 10px 0;
}
.skills ul li {
float: left;
margin: 0 5px 5px 0;
font-size: 90%;
background: #b3b3b3;
padding: 4px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.skills h6 {
clear: left;
}
dl dt {
color: #555;
}
dl dd {
margin: 0 0 10px 0;
}
.education dl dd:first-of-type {
font-weight: bold;
font-size: 16px;
}
.education dl dd:not(:first-of-type) {
color: #666;
float: left;
}
.education dl dt:not(:first-of-type) {
float: left;
clear: left;
width: 70px;
}