-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
168 lines (163 loc) · 4.7 KB
/
profile.html
File metadata and controls
168 lines (163 loc) · 4.7 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/static/img/favicon-16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/static/img/favicon-32.png" sizes="32x32">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="/static/css/skillicious.main.css" />
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<style>
.profile-container h2 {
margin-top: 0;
}
.profile-section {
padding: 2.8em 0;
border-bottom: solid 1px #DDD;
}
.profile-section:last-child {
border: 0;
}
.profile-section h3 {
margin-top: 0;
margin-bottom: 1.6em;
}
.tag {
display: inline-block;
padding: 5px 10px;
text-align: center;
color: #FFF;
border-radius: 0.2em;
margin-right: 0.2em;
}
.skill-working {
background-color: #999;
}
.skill-advanced {
background-color: #555;
}
.skill-expert {
background-color: #000;
}
.preformatted {
white-space: pre-wrap;
}
.work-position, .edu-degree {
margin-top: 40px;
margin-bottom: 10px;
}
.skill:first-child {
margin-top: 40px;
margin-bottom: 5px;
}
.skill {
margin-top: 5px;
margin-bottom: 5px;
}
.skill select {
height: 32px;
padding: 5px;
}
.position-employer, .degree-school {
font-size: 1.1em;
font-weight: 600;
}
.position-employer, .position-title, .position-duration,
.degree-degree, .degree-year {
line-height: 1.5em;
}
.position-description {
margin-top: 10px;
}
.profile-info-box {
border: solid 1px #DDD;
padding: 10px 20px;
border-radius: 2px;
}
.profile-completion .profile-completion-percent {
color: #5cb85c;
font-weight: 600;
}
.profile-completion .progress {
margin-top: 10px;
margin-bottom: 10px;
height: 10px;
border-radius: 3px;
}
.profile-completion .btn-profile-update {
margin-top: 8px;
display: inline-block;
}
.profile-photo {
width: 100%;
}
.profile-photo img {
max-width: 100%;
}
.profile-edit-input {
width: 100%;
}
div.profile-edit-input {
min-height: 12em;
}
.btn-work-history {
float: right;
cursor: pointer;
margin: 5px;
}
.btn-cancel {
padding: 0 20px;
cursor: pointer;
display: inline-block;
}
.add, .edit {
border: solid 1px #AAA;
background-color: #F0F0F0;
border-radius: 2px;
padding: 5px 15px;
}
.add .date-input, .edit .date-input {
width: 160px;
}
.edit input, .edit div.editable, .edit select, .edit button, .edit a,
.add input, .add div.editable, .add select, .add button, .add a {
margin: 10px 0;
}
div.editable {
background-color: #FFF;
}
.add .empty {
color: #AAA;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand logo" href="/">Skillicious</a>
</div>
<div id="navbar-container" id="navbar" class="navbar-collapse collapse">
<!-- user info React component -->
</div><!--/.navbar-collapse -->
</div>
</nav>
<div class="container content-container" id="profile-container">
</div> <!-- /container -->
<footer class="text-center">
<p>© Skillicious 2015</p>
</footer>
</body>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/static/index.js"></script>
<script type="text/javascript">
window.skillicious.initializeProfile($("#profile-container")[0]);
</script>
</html>