Bootstrap 4, with custom @media print improvements
This commit is contained in:
parent
d133420d96
commit
fe58e83185
32 changed files with 23210 additions and 8406 deletions
|
@ -20,11 +20,10 @@ disable404 = true
|
|||
# Theme styles
|
||||
|
||||
# The original template comes with 6 colour schemes. You may choose styles below.
|
||||
# "styles.css", "styles-2.css", "styles-3.css", "styles-4.css", "styles-5.css", "styles-6.css"
|
||||
# are available. Also the source LESS files are included so
|
||||
# it’s quick and easy to change the styling and colour scheme.
|
||||
# "orbit-1.css", "orbit-2.css", "orbit-3.css", "orbit-4.css", "orbit-5.css", "orbit-6.css"
|
||||
# are available.
|
||||
|
||||
styles = "styles.css"
|
||||
styles = "orbit-1.css"
|
||||
|
||||
# Sidebar sections
|
||||
|
||||
|
|
|
@ -27,11 +27,9 @@
|
|||
{{ partial "skills.html" . }}
|
||||
{{ end }}
|
||||
|
||||
</div><!--//main-body-->
|
||||
</div><!--//main-wrapper-->
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
{{ partial "scripts.html" . }}
|
||||
{{ partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div class="profile-container">
|
||||
<img class="profile img-circle" width="100" src="{{ .Site.BaseURL }}assets/images/{{ .Site.Params.profile.avatar }}" alt="" />
|
||||
<img class="profile rounded-circle" width="100" src="{{ .Site.BaseURL }}assets/images/{{ .Site.Params.profile.avatar }}" alt="" />
|
||||
<h1 class="name">{{ .Site.Params.profile.name }}</h1>
|
||||
<h3 class="tagline">{{ .Site.Params.profile.tagline }}</h3>
|
||||
</div><!--//profile-container-->
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
<!-- Javascript -->
|
||||
<script type="text/javascript" src="{{ .Site.BaseURL }}assets/plugins/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="{{ .Site.BaseURL }}assets/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||||
<!-- custom js -->
|
||||
<script type="text/javascript" src="{{ .Site.BaseURL }}assets/js/main.js"></script>
|
|
@ -4,8 +4,8 @@
|
|||
{{ range .Site.Params.skills.list }}
|
||||
<div class="item">
|
||||
<h3 class="level-title">{{ .skill }}</h3>
|
||||
<div class="level-bar">
|
||||
<div class="level-bar-inner" data-level="{{ .level }}">
|
||||
<div class="progress level-bar">
|
||||
<div class="progress-bar theme-progress-bar level-bar-inner" role="progressbar" style="width: {{ .level }}" aria-valuenow="{{ .level }}" aria-valuemin="0" aria-valuemax="100">
|
||||
</div>
|
||||
</div><!--//level-bar-->
|
||||
</div><!--//item-->
|
||||
|
|
373
static/assets/css/orbit-1.css
Normal file
373
static/assets/css/orbit-1.css
Normal file
|
@ -0,0 +1,373 @@
|
|||
/*!
|
||||
* Template Name: Orbit - Bootstrap 4 Resume/CV Template for Developers
|
||||
* Version: 2.0
|
||||
* Author: Xiaoying Riley
|
||||
* Copyright: 3rd Wave Media
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
*/
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #545E6C;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #2d7788;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #1a454f;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: #42A8C0;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: none;
|
||||
}
|
||||
.wrapper {
|
||||
margin: 0 !important;
|
||||
width: 100vw ;
|
||||
max-width: 100vw;
|
||||
}
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
.main-wrapper section.section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
.main-wrapper section.section {
|
||||
margin-bottom: 0px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.skillset .item {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
background: #42A8C0;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 240px;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile-container {
|
||||
padding: 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .name {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .tagline {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .svg-inline--fa {
|
||||
margin-right: 5px;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .email .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .degree {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .meta {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .time {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-container .lang-desc {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
padding-right: 300px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #2d7788;
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background: #2d7788;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.main-wrapper .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.main-wrapper .experiences-section .item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .upper-row {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.main-wrapper .job-title {
|
||||
color: #3F4650;
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.main-wrapper .time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .company {
|
||||
margin-bottom: 10px;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .project-title {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .intro {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.skillset .item {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.skillset .level-title {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.skillset .level-bar {
|
||||
height: 12px;
|
||||
background: #f5f5f5;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-ms-border-radius: 2px;
|
||||
-o-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.skillset .theme-progress-bar {
|
||||
background: #68bacd;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 30px;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.footer .copyright {
|
||||
line-height: 1.6;
|
||||
color: #545E6C;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.footer .fa-heart {
|
||||
color: #fb866a;
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar-wrapper {
|
||||
position: static;
|
||||
width: inherit;
|
||||
}
|
||||
.main-wrapper {
|
||||
padding: 30px;
|
||||
}
|
||||
.main-wrapper .time {
|
||||
position: static;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.main-wrapper .upper-row {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
373
static/assets/css/orbit-2.css
Normal file
373
static/assets/css/orbit-2.css
Normal file
|
@ -0,0 +1,373 @@
|
|||
/*!
|
||||
* Template Name: Orbit - Bootstrap 4 Resume/CV Template for Developers
|
||||
* Version: 2.0
|
||||
* Author: Xiaoying Riley
|
||||
* Copyright: 3rd Wave Media
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
*/
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #545E6C;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #35776d;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #1d423c;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: #4CAC9D;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: none;
|
||||
}
|
||||
.wrapper {
|
||||
margin: 0 !important;
|
||||
width: 100vw ;
|
||||
max-width: 100vw;
|
||||
}
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
.main-wrapper section.section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
.main-wrapper section.section {
|
||||
margin-bottom: 0px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.skillset .item {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
background: #4CAC9D;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 240px;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile-container {
|
||||
padding: 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .name {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .tagline {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .svg-inline--fa {
|
||||
margin-right: 5px;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .email .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .degree {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .meta {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .time {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-container .lang-desc {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
padding-right: 300px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #35776d;
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background: #35776d;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.main-wrapper .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.main-wrapper .experiences-section .item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .upper-row {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.main-wrapper .job-title {
|
||||
color: #3F4650;
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.main-wrapper .time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .company {
|
||||
margin-bottom: 10px;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .project-title {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .intro {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.skillset .item {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.skillset .level-title {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.skillset .level-bar {
|
||||
height: 12px;
|
||||
background: #f5f5f5;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-ms-border-radius: 2px;
|
||||
-o-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.skillset .theme-progress-bar {
|
||||
background: #6dbeb2;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 30px;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.footer .copyright {
|
||||
line-height: 1.6;
|
||||
color: #545E6C;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.footer .fa-heart {
|
||||
color: #fb866a;
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar-wrapper {
|
||||
position: static;
|
||||
width: inherit;
|
||||
}
|
||||
.main-wrapper {
|
||||
padding: 30px;
|
||||
}
|
||||
.main-wrapper .time {
|
||||
position: static;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.main-wrapper .upper-row {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
373
static/assets/css/orbit-3.css
Normal file
373
static/assets/css/orbit-3.css
Normal file
|
@ -0,0 +1,373 @@
|
|||
/*!
|
||||
* Template Name: Orbit - Bootstrap 4 Resume/CV Template for Developers
|
||||
* Version: 2.0
|
||||
* Author: Xiaoying Riley
|
||||
* Copyright: 3rd Wave Media
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
*/
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #545E6C;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #3d884d;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #25532f;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: #5BB66F;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: none;
|
||||
}
|
||||
.wrapper {
|
||||
margin: 0 !important;
|
||||
width: 100vw ;
|
||||
max-width: 100vw;
|
||||
}
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
.main-wrapper section.section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
.main-wrapper section.section {
|
||||
margin-bottom: 0px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.skillset .item {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
background: #5BB66F;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 240px;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile-container {
|
||||
padding: 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .name {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .tagline {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .svg-inline--fa {
|
||||
margin-right: 5px;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .email .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .degree {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .meta {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .time {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-container .lang-desc {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
padding-right: 300px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #3d884d;
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background: #3d884d;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.main-wrapper .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.main-wrapper .experiences-section .item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .upper-row {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.main-wrapper .job-title {
|
||||
color: #3F4650;
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.main-wrapper .time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .company {
|
||||
margin-bottom: 10px;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .project-title {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .intro {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.skillset .item {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.skillset .level-title {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.skillset .level-bar {
|
||||
height: 12px;
|
||||
background: #f5f5f5;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-ms-border-radius: 2px;
|
||||
-o-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.skillset .theme-progress-bar {
|
||||
background: #7ec68e;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 30px;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.footer .copyright {
|
||||
line-height: 1.6;
|
||||
color: #545E6C;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.footer .fa-heart {
|
||||
color: #fb866a;
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar-wrapper {
|
||||
position: static;
|
||||
width: inherit;
|
||||
}
|
||||
.main-wrapper {
|
||||
padding: 30px;
|
||||
}
|
||||
.main-wrapper .time {
|
||||
position: static;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.main-wrapper .upper-row {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
373
static/assets/css/orbit-4.css
Normal file
373
static/assets/css/orbit-4.css
Normal file
|
@ -0,0 +1,373 @@
|
|||
/*!
|
||||
* Template Name: Orbit - Bootstrap 4 Resume/CV Template for Developers
|
||||
* Version: 2.0
|
||||
* Author: Xiaoying Riley
|
||||
* Copyright: 3rd Wave Media
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
*/
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #545E6C;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #6e3852;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #3c1e2c;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: #A15277;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: none;
|
||||
}
|
||||
.wrapper {
|
||||
margin: 0 !important;
|
||||
width: 100vw ;
|
||||
max-width: 100vw;
|
||||
}
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
.main-wrapper section.section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
.main-wrapper section.section {
|
||||
margin-bottom: 0px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.skillset .item {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
background: #A15277;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 240px;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile-container {
|
||||
padding: 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .name {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .tagline {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .svg-inline--fa {
|
||||
margin-right: 5px;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .email .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .degree {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .meta {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .time {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-container .lang-desc {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
padding-right: 300px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #6e3852;
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background: #6e3852;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.main-wrapper .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.main-wrapper .experiences-section .item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .upper-row {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.main-wrapper .job-title {
|
||||
color: #3F4650;
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.main-wrapper .time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .company {
|
||||
margin-bottom: 10px;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .project-title {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .intro {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.skillset .item {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.skillset .level-title {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.skillset .level-bar {
|
||||
height: 12px;
|
||||
background: #f5f5f5;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-ms-border-radius: 2px;
|
||||
-o-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.skillset .theme-progress-bar {
|
||||
background: #b67091;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 30px;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.footer .copyright {
|
||||
line-height: 1.6;
|
||||
color: #545E6C;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.footer .fa-heart {
|
||||
color: #fb866a;
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar-wrapper {
|
||||
position: static;
|
||||
width: inherit;
|
||||
}
|
||||
.main-wrapper {
|
||||
padding: 30px;
|
||||
}
|
||||
.main-wrapper .time {
|
||||
position: static;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.main-wrapper .upper-row {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
373
static/assets/css/orbit-5.css
Normal file
373
static/assets/css/orbit-5.css
Normal file
|
@ -0,0 +1,373 @@
|
|||
/*!
|
||||
* Template Name: Orbit - Bootstrap 4 Resume/CV Template for Developers
|
||||
* Version: 2.0
|
||||
* Author: Xiaoying Riley
|
||||
* Copyright: 3rd Wave Media
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
*/
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #545E6C;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #f47c03;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #a85502;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: #FDA246;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: none;
|
||||
}
|
||||
.wrapper {
|
||||
margin: 0 !important;
|
||||
width: 100vw ;
|
||||
max-width: 100vw;
|
||||
}
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
.main-wrapper section.section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
.main-wrapper section.section {
|
||||
margin-bottom: 0px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.skillset .item {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
background: #FDA246;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 240px;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile-container {
|
||||
padding: 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .name {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .tagline {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .svg-inline--fa {
|
||||
margin-right: 5px;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .email .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .degree {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .meta {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .time {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-container .lang-desc {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
padding-right: 300px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #f47c03;
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background: #f47c03;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.main-wrapper .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.main-wrapper .experiences-section .item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .upper-row {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.main-wrapper .job-title {
|
||||
color: #3F4650;
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.main-wrapper .time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .company {
|
||||
margin-bottom: 10px;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .project-title {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .intro {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.skillset .item {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.skillset .level-title {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.skillset .level-bar {
|
||||
height: 12px;
|
||||
background: #f5f5f5;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-ms-border-radius: 2px;
|
||||
-o-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.skillset .theme-progress-bar {
|
||||
background: #febb78;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 30px;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.footer .copyright {
|
||||
line-height: 1.6;
|
||||
color: #545E6C;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.footer .fa-heart {
|
||||
color: #fb866a;
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar-wrapper {
|
||||
position: static;
|
||||
width: inherit;
|
||||
}
|
||||
.main-wrapper {
|
||||
padding: 30px;
|
||||
}
|
||||
.main-wrapper .time {
|
||||
position: static;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.main-wrapper .upper-row {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
373
static/assets/css/orbit-6.css
Normal file
373
static/assets/css/orbit-6.css
Normal file
|
@ -0,0 +1,373 @@
|
|||
/*!
|
||||
* Template Name: Orbit - Bootstrap 4 Resume/CV Template for Developers
|
||||
* Version: 2.0
|
||||
* Author: Xiaoying Riley
|
||||
* Copyright: 3rd Wave Media
|
||||
* Twitter: @3rdwave_themes
|
||||
* License: Creative Commons Attribution 3.0 License
|
||||
* Website: http://themes.3rdwavemedia.com/
|
||||
*/
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #545E6C;
|
||||
background: #f5f5f5;
|
||||
font-size: 14px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #2e4049;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: #10171a;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
background: #4B6A78;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-top: 30px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
background: none;
|
||||
}
|
||||
.wrapper {
|
||||
margin: 0 !important;
|
||||
width: 100vw ;
|
||||
max-width: 100vw;
|
||||
}
|
||||
footer {
|
||||
display: none;
|
||||
}
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
.main-wrapper section.section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
.main-wrapper section.section {
|
||||
margin-bottom: 0px !important;
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.skillset .item {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-wrapper {
|
||||
background: #4B6A78;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: 240px;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile-container {
|
||||
padding: 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .name {
|
||||
font-size: 32px;
|
||||
font-weight: 900;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .tagline {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .profile {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .svg-inline--fa {
|
||||
margin-right: 5px;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .contact-list .email .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .container-block-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .degree {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .meta {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .education-container .time {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 500;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-container .lang-desc {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .languages-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.sidebar-wrapper .interests-list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
padding-right: 300px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title {
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: #2e4049;
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
-webkit-border-radius: 50%;
|
||||
-moz-border-radius: 50%;
|
||||
-ms-border-radius: 50%;
|
||||
-o-border-radius: 50%;
|
||||
border-radius: 50%;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
background: #2e4049;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.main-wrapper .section-title .icon-holder .svg-inline--fa {
|
||||
font-size: 14px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.main-wrapper .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.main-wrapper .experiences-section .item {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .upper-row {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.main-wrapper .job-title {
|
||||
color: #3F4650;
|
||||
font-size: 16px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.main-wrapper .time {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .company {
|
||||
margin-bottom: 10px;
|
||||
color: #97AAC3;
|
||||
}
|
||||
|
||||
.main-wrapper .project-title {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .intro {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.main-wrapper .projects-section .item {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.skillset .item {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.skillset .level-title {
|
||||
font-size: 14px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.skillset .level-bar {
|
||||
height: 12px;
|
||||
background: #f5f5f5;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-ms-border-radius: 2px;
|
||||
-o-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding-box;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.skillset .theme-progress-bar {
|
||||
background: #5f8697;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 30px;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.footer .copyright {
|
||||
line-height: 1.6;
|
||||
color: #545E6C;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.footer .fa-heart {
|
||||
color: #fb866a;
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar-wrapper {
|
||||
position: static;
|
||||
width: inherit;
|
||||
}
|
||||
.main-wrapper {
|
||||
padding: 30px;
|
||||
}
|
||||
.main-wrapper .time {
|
||||
position: static;
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.main-wrapper .upper-row {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.skillset .level-title {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
1912
static/assets/plugins/bootstrap/css/bootstrap-grid.css
vendored
Normal file
1912
static/assets/plugins/bootstrap/css/bootstrap-grid.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
7
static/assets/plugins/bootstrap/css/bootstrap-grid.min.css
vendored
Normal file
7
static/assets/plugins/bootstrap/css/bootstrap-grid.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
331
static/assets/plugins/bootstrap/css/bootstrap-reboot.css
vendored
Normal file
331
static/assets/plugins/bootstrap/css/bootstrap-reboot.css
vendored
Normal file
|
@ -0,0 +1,331 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v4.1.2 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-ms-overflow-style: scrollbar;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
[tabindex="-1"]:focus {
|
||||
outline: 0 !important;
|
||||
}
|
||||
|
||||
hr {
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-original-title] {
|
||||
text-decoration: underline;
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: .5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
-webkit-text-decoration-skip: objects;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #0056b3;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]) {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0.75rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
caption-side: bottom;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
input {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox;
|
||||
}
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: .5rem;
|
||||
font-size: 1.5rem;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type="search"] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
File diff suppressed because one or more lines are too long
8
static/assets/plugins/bootstrap/css/bootstrap-reboot.min.css
vendored
Normal file
8
static/assets/plugins/bootstrap/css/bootstrap-reboot.min.css
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v4.1.2 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
||||
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
6461
static/assets/plugins/bootstrap/js/bootstrap.bundle.js
vendored
Normal file
6461
static/assets/plugins/bootstrap/js/bootstrap.bundle.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
7
static/assets/plugins/bootstrap/js/bootstrap.bundle.min.js
vendored
Normal file
7
static/assets/plugins/bootstrap/js/bootstrap.bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
1
static/assets/plugins/bootstrap/js/bootstrap.js.map
Normal file
1
static/assets/plugins/bootstrap/js/bootstrap.js.map
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
static/assets/plugins/bootstrap/js/bootstrap.min.js.map
Normal file
1
static/assets/plugins/bootstrap/js/bootstrap.min.js.map
Normal file
File diff suppressed because one or more lines are too long
5
static/assets/plugins/jquery-1.11.3.min.js
vendored
5
static/assets/plugins/jquery-1.11.3.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue