Skip to content

Commit ed3db6a

Browse files
committed
mobile
1 parent f3c107d commit ed3db6a

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

_includes/css/grayscale.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
body {
88
width: 100%;
99
height: 100%;
10-
font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;
10+
/*font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
11+
font-size: 18px;
1112
color: #fff;
1213
background-color: {{ site.color.primary-dark }};
1314
}

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<footer>
22
<div class="container text-center">
3-
<p>Copyright &copy; {{ site.footer }} 20{{ site.time | date: '%y' }}</p>
3+
<p style="font-size:15px;">Copyright &copy; {{ site.footer }} 20{{ site.time | date: '%y' }}</p>
44
</div>
55
</footer>

_includes/head.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
<head>
22
<meta charset="utf-8">
33
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
5+
<meta name="viewport" content="width=device-width">
6+
<meta name="description" content="{{ site.description }}">
47
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
58

69
<!-- Custom CSS & Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
710
<link rel="stylesheet" href="{{ "/style.css" | prepend: site.baseurl }}">
811

912
<script src="https://cdn.jsdelivr.net/npm/marked@14.0.0/marked.min.js"></script>
1013

14+
<!-- Custom Fonts -->
15+
<link rel="stylesheet" href="{{ "/css/font-awesome/css/font-awesome.min.css" | prepend: site.baseurl }}">
16+
<link href="//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
17+
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
18+
1119
</head>

_includes/header.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<div class="col-md-8 col-md-offset-2">
77
<a href="https://github.com/qlibs"><img src="img/qlibs_logo.png" width="90%;"/></a>
88
<p class="intro-text">{{ site.description }}<br>
9+
<br />
10+
<a href="#about" class="btn btn-circle page-scroll">
11+
<i class="fa fa-angle-double-down animated"></i>
12+
</a>
913
</div>
1014
</div>
1115
</div>

_includes/nav.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ul class="list-inline banner-social-buttons">
99
{% for network in site.social %}
1010
<li>
11-
<a href="{{ network.url }}" class="btn btn-default btn-lg"><i class="fa fa-{{ network.title }} fa-fw"></i> <span class="network-name">{{ network.title }}</span></a>
11+
&nbsp;&nbsp;&nbsp;<a href="{{ network.url }}" class="btn btn-default btn-lg"><i class="fa fa-{{ network.title }} fa-fw"></i> <span class="network-name">{{ network.title }}</span></a>
1212
</li>
1313
{% endfor %}
1414
</ul>

0 commit comments

Comments
 (0)