Skip to content

Commit 598ff2b

Browse files
committed
libs
1 parent 9e5b9c9 commit 598ff2b

21 files changed

+37505
-43
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
title: Qlibs++
22
url: https://qlibs.github.io
3-
description: "Quality, Performance, Simplicity"
3+
description: "Mission: Quality, Performance, Simplicity"
44

55
color:
66
primary-dark: '#000000'

_includes/about.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<div class="row">
44
<div class="col-lg-8 col-lg-offset-2">
55
<h2>About</h2>
6+
<hr />
67
<p>Qlibs++ is set of modern C++ libraries.</p>
8+
<hr />
79
</div>
810
</div>
911
</section>

_includes/css/styles.css

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/*
2+
-------------------------------------------
3+
Author: Seyon Rajagopal
4+
Copyright (c) 2020 Seyon Rajagopal
5+
-------------------------------------------
6+
*/
7+
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
}
12+
13+
body {
14+
width: 100%;
15+
}
16+
17+
/* css for start page asking for username */
18+
19+
#title {
20+
text-align: left;
21+
vertical-align: left;
22+
position: absolute;
23+
padding: 30px;
24+
border-radius: 20px;
25+
left: 50%;
26+
top: 50%;
27+
transform: translate(-50%, -50%);
28+
background-color: #3C3F58;
29+
}
30+
31+
32+
#title h1 {
33+
color: white;
34+
vertical-align: middle;
35+
}
36+
37+
#title i {
38+
color: rgb(168, 168, 168);
39+
}
40+
41+
#user {
42+
width: 200px;
43+
margin-top: 20px;
44+
padding: 10px;
45+
border-radius: 4px;
46+
border: none;
47+
margin-bottom: 30px;
48+
background: rgba(36, 37, 42, 0.397);
49+
color: #fff;
50+
}
51+
52+
#btn {
53+
width: 100px;
54+
margin-top: 20px;
55+
padding: 10px;
56+
border-radius: 4px;
57+
border: none;
58+
margin-bottom: 10px;
59+
background: rgba(0,139,165,1);;
60+
color: #fff;
61+
cursor: pointer;
62+
}
63+
64+
#back {
65+
text-align: center;
66+
margin: 30px;
67+
}
68+
69+
#back a {
70+
width: 100px;
71+
margin-top: 20px;
72+
padding: 10px;
73+
border-radius: 4px;
74+
border: none;
75+
margin-bottom: 10px;
76+
background: rgba(0,139,165,1);;
77+
color: #fff;
78+
cursor: pointer;
79+
}
80+
81+
/* Modify code bolow to modify to adjust styling for the repositories. The above css is for other elements */
82+
83+
84+
.repo-item {
85+
border-radius: 10px;
86+
padding: 20px;
87+
margin: 20px;
88+
background-color: #202121;
89+
overflow: auto;
90+
overflow-wrap: break-word;
91+
}
92+
93+
.description {
94+
color: white;
95+
}
96+
97+
.language, .star, .fork {
98+
max-width: 100px;
99+
display:inline-block;
100+
margin-right: 20px;
101+
color: white;
102+
}
103+
104+
/* End code to modify */

0 commit comments

Comments
 (0)