-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhireme.css
135 lines (126 loc) · 2.64 KB
/
hireme.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
body { margin: 0;
padding: 0;
background-color: #fff;
font-size: 11px;
font-family: 'Lato', sans-serif;
-webkit-font-smoothing: subpixel-antialiased;
}
* { box-sizing: border-box;
-moz-box-sizing: border-box;
}
/*
Primary Rules
*/
h1 { font-weight: 300;
margin: 5px 0 0;
font-size: 40px;
color:#e47911;
padding: 0 10px 10px;
border-radius:2px;
font-family: 'Lato', serif;
}
h2 { color: #aaa;
width: 150px;
font-size: 18px;
padding-left: 20px;
font-weight:400;
font-family: 'Lato', serif;
}
h3 { color: #e47911;
font-size: 18px;
font-weight: bold;
margin-bottom: 0;
line-height: 28px;
font-family: 'Lato', serif;
}
h4 { font-weight: 300;
margin: 5px 0 0;
font-size: 15px;
padding: 0 13px 10px;
border-radius:2px;
font-family: 'Lato', serif;
}
h2, h3 { margin-top: 0 }
a { color: #e47911;
display: inline-block;
text-decoration: none;
padding:2px 4px;
border-radius:2px;
margin-right:-2px;
}
a:hover {
background-color:#e47911;
color:#fff;
}
.key:first-child { margin-left: 0 }
.key { margin: 0 10px;
position: relative;
}
.key::before { content: '◆';
position: absolute;
left: -15px;
color: #555;
font-size: 7pt;
}
.key:first-child::before { content: '' }
.section { border-bottom: 1px solid #ddd;
padding: 5px 0 5px;
}
.section:last-child { border: none }
.section-text { width: 85%;
font-size: 16px;
line-height: 20px;
margin: 0;
padding: 0;
}
.subsection { margin: 10px 0 5px }
.desc { font-size: 16px; line-height: 24px; font-family: 'Lato', sans-serif; color:#444;}
.contact-info { font-size: 16px;
text-align: right;
}
.light { color: #aaa;letter-spacing:1px;
font-size: 14px;
line-height:28px;
font-family: 'Lato', sans-serif;
text-transform:uppercase;
}
ul{
padding-left:15px;
}
ul.skills{
float:left;
width:30%;
padding-left:0px;
margin: 0 20px 0 0;
}
ul.skills li{
list-style: none;
font-size:16px;
margin-bottom:10px;
}
ul.skills li:last-child{
margin:0;
}
/*
Float Rules
*/
.row:before, .row:after { content: "";
display: table;
}
.row:after { clear: both }
.col { float: left }
.col-right { float: right }
.col-left { float: left }
/*
Page Rules
*/
.page { width: 1250px;
min-height: 29.7cm;
margin: 1cm auto;
background: white;
padding: 20px 50px;
}
.subpage { padding: 1cm;
border: 1px red solid;
height: 297mm;
}