Skip to content

Commit 9b056b8

Browse files
committed
Continue on section and footer
Signed-off-by: Pratik Karki <[email protected]>
1 parent 3d9cf2c commit 9b056b8

File tree

2 files changed

+169
-14
lines changed

2 files changed

+169
-14
lines changed

css/custom.css

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
body {
2+
padding-top: 56px;
3+
}
4+
5+
section {
6+
padding-top: 5rem;
7+
padding-bottom: 5rem;
8+
}
9+
10+
.lnr {
11+
display: inline-block;
12+
fill: currentColor;
13+
width: 1em;
14+
height: 1em;
15+
vertical-align: -0.05em;
16+
stroke-width: 1;
17+
}
18+
19+
.services-icon {
20+
margin-bottom: 20px;
21+
font-size: 30px;
22+
}
23+
24+
.quote-icon {
25+
font-size: 40px;
26+
margin-bottom: 20px;
27+
}
28+
29+
.gittext {
30+
color: #646464;
31+
font-weight: bold;
32+
}
33+
34+
.lowercase {
35+
text-transform: lowercase;
36+
}
37+
38+
h1,
39+
h2,
40+
h3,
41+
h4 {
42+
font-weight: 300;
43+
}
44+
45+
h1 {
46+
font-size: 2.500em;
47+
}
48+
49+
h1 span {
50+
color: #969696;
51+
font-size: .42em;
52+
margin-left: .476em;
53+
}
54+
55+
h2 {
56+
font-size: 3em;
57+
line-height: 1.3;
58+
}
59+
60+
h3 {
61+
font-size: 1.875em;
62+
line-height: 1.3;
63+
}
64+
65+
h4 {
66+
font-size: 1.5em;
67+
line-height: 1.1;
68+
}
69+
70+
/* p {
71+
margin-top: 0em ;
72+
margin-bottom: 10em ;
73+
} */
74+
75+
li.borderless {
76+
border-top: 0 none;
77+
border-bottom: 0 none;
78+
border-right: 0 none;
79+
border-left: 0 none;
80+
}

index.html

+89-14
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
1212
<!-- Custom Stylesheet -->
1313
<link rel="shortcut icon" href="favicon.ico">
14-
<link rel="stylesheet" href="css/style.css">
14+
<link rel="stylesheet" href="css/custom.css">
1515
<!--[if lt IE 9]>
1616
<script src="js/html5shiv.js"></script>
1717
<script src="js/respond.js"></script>
@@ -20,7 +20,12 @@
2020
<body>
2121
<!-- navbar -->
2222
<nav class="navbar navbar-light navbar-expand-lg fixed-top shadow-sm bg-white">
23-
<a href="index.html" class="navbar-brand"><h1 class="gittext lowercase">Git<span>for Windows</span></h1></a>
23+
<a href="index.html" class="navbar-brand">
24+
<!-- <i>git </i>for <b>Windows</b> -->
25+
<h1 class="gittext lowercase">
26+
Git<span>for Windows</span>
27+
</h1>
28+
</a>
2429
<button type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler"><span class="navbar-toggler-icon"></span></button>
2530
<div id="navbarSupportedContent" class="collapse navbar-collapse">
2631
<ul class="navbar-nav ml-auto">
@@ -69,11 +74,28 @@ <h2>We bring the awesome <span class="gittext">Git</span> SCM to Windows</h2>
6974
</div>
7075
</article> -->
7176
</section>
72-
<section class="details">
73-
<article>
74-
<h2>Tools &amp; Features</h2>
75-
<div class="content">
76-
<div class="vcentercontainer detailstext">
77+
<section>
78+
<div class="container">
79+
<h2>Tools &amp; Features</h2>
80+
<p class="text-muted mb-5">Git for Windows focuses on offering a lightweight, native set of tools that bring the full feature set of the <a href="https://git-scm.com" target="_blank">Git SCM</a> to Windows while providing appropriate user interfaces for experienced Git users and novices alike.</p>
81+
<div class="row">
82+
<div class="col-sm-6 col-lg-4 mb-3">
83+
<img src="img/gw1web_thumb.png" alt="Git BASH">
84+
<h3>Git BASH</h3>
85+
<p>Git for Windows provides a BASH emulation used to run Git from the command line. *NIX users should feel right at home, as the BASH emulation behaves just like the "git" command in LINUX and UNIX environments.</p>
86+
</div>
87+
<div class="col-sm-6 col-lg-4 mb-3">
88+
<img src="img/gw2web_thumb.png" alt="Git GUI">
89+
<h3>Git GUI</h3>
90+
<p>As Windows users commonly expect graphical user interfaces, Git for Windows also provides the Git GUI, a powerful alternative to Git BASH, offering a graphical version of just about every Git command line function, as well as comprehensive visual diff tools.</p>
91+
</div>
92+
<div class="col-sm-6 col-lg-4 mb-3">
93+
<img src="img/gw3web_thumb.png" alt="Gitk: Exploring Commits">
94+
<h3>Shell Integration</h3>
95+
<p>Simply right-click on a folder in Windows Explorer to access the BASH or GUI.</p>
96+
</div>
97+
</div>
98+
<!-- <div class="vcentercontainer detailstext">
7799
<div>
78100
<p>Git for Windows focuses on offering a lightweight, native set of tools that bring the full feature set of the <a href="https://git-scm.com" target="_blank">Git SCM</a> to Windows while providing appropriate user interfaces for experienced Git users and novices alike.</p>
79101
<h3 id="bash" >Git BASH</h3>
@@ -83,8 +105,8 @@ <h3 id="git-gui" >Git GUI</h3>
83105
<h3 id="explorer" >Shell Integration</h3>
84106
<p>Simply right-click on a folder in Windows Explorer to access the BASH or GUI.</p>
85107
</div>
86-
</div>
87-
<div class="vcentercontainer detailsimg">
108+
</div> -->
109+
<!-- <div class="vcentercontainer detailsimg">
88110
<div class="verticalgallery">
89111
<a class="fancybox-thumb" data-fancybox-group="gallery" href="img/gw1.png" title="Git BASH">
90112
<img src="img/gw1web_thumb.png" alt="Git BASH">
@@ -96,9 +118,9 @@ <h3 id="explorer" >Shell Integration</h3>
96118
<img src="img/gw3web_thumb.png" alt="Gitk: Exploring Commits">
97119
</a>
98120
</div>
99-
</div>
121+
</div> -->
100122
</div>
101-
<div class="stud"></div>
123+
<!-- <div class="stud"></div>
102124
<h2 id="contribute">Contribute</h2>
103125
<div class="content contributecontent">
104126
<div class="vcentercontainer detailsimg">
@@ -126,9 +148,62 @@ <h3><span class="gittext">Git for Windows SDK</span> : Contributing Code</h3>
126148
<div class="stud">
127149
<a href="https://twitter.com/GitForWindows" rel="publisher">Twitter</a>
128150
</div>
129-
</article>
151+
</article> -->
152+
</section>
153+
<section class="bg-light">
154+
<div class="container">
155+
<h2>Contribute</h2>
156+
<p>As an open source project, Git for Windows benefits greatly from both the volunteer work of helpful developers and <a href="https://github.com/git-for-windows/git/wiki/Issue-reporting-guidelines">good bug reports</a> made by Git for Windows' users.</p>
157+
<h3>Governance Model</h3>
158+
<p>If you are interested in contributing to the <i>Git for Windows</i> project, have a look at the current <a href="governance-model.html">governance model</a>. There the roles of those involved in driving this project further down the road are described in detail.</p>
159+
<h3><a name="issues"></a>Bug Reports &amp; Feature Requests</h3>
160+
<p>If you've noticed a bug or simply have an idea that you'd like to see become real, why not work on it? Bug reports and feature requests are typically submitted to the issue tracker on our GitHub repository.</p>
161+
<a class="btn btn-primary shadow mr-2" href="https://github.com/git-for-windows/git/issues" target="_blank">Issue Tracker</a>
162+
<br>
163+
<img src="img/details_contribute.png" class="rounded float-left" alt="Git for Windows Logo">
164+
<h3><span class="gittext">Git for Windows SDK</span> : Contributing Code</h3>
165+
<p>The <i>Git for Windows SDK</i> is a build environment that includes all the tools necessary for developers who want to contribute by writing code for Git for Windows.</p>
166+
<p>Please look at the <a href="https://github.com/git-for-windows/git/wiki/Technical-overview">technical overview</a> of the Git for Windows packaging and how to include your changes in your own custom installer.</p>
167+
<a name="download-sdk" /><a class="btn btn-outline-primary shadow mr-2" href="https://github.com/git-for-windows/build-extra/releases/latest" target="_blank">Download <span class="gittext">Git for Windows SDK</span></a>
168+
<p>To contribute/update this web page, see its <a href=" https://github.com/git-for-windows/git-for-windows.github.io">Repository</a>.</p>
169+
</div>
130170
</section>
131-
<footer>
171+
<div class="py-3 bg-dark text-white">
172+
<div class="container">
173+
<div class="row">
174+
<div class="col-md-7 text-center">
175+
<p class="mb-md-0">
176+
<!-- <a href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a>
177+
<a href="https://github.com/git-for-windows/git" target="_blank">Repository</a>
178+
<a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a>
179+
<a href="https://github.com/git-for-windows/git/releases/">All Releases</a>
180+
<a href="https://wingit.blob.core.windows.net/files/index.html">Snapshots</a>
181+
<a href="https://github.com/git-for-windows/build-extra/blob/master/ReleaseNotes.md#licenses">Licenses</a> -->
182+
<ul class="list-group list-group-horizontal">
183+
<li class="list-group-item borderless"><a style="font-weight:bold" href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
184+
<li class="list-group-item borderless"><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
185+
<li class="list-group-item borderless"><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
186+
<li class="list-group-item borderless"><a href="https://github.com/git-for-windows/git/releases/">All Releases</a></li>
187+
<li class="list-group-item borderless"><a href="https://wingit.blob.core.windows.net/files/index.html">Snapshots</a></li>
188+
<li class="list-group-item borderless"><a href="https://github.com/git-for-windows/build-extra/blob/master/ReleaseNotes.md#licenses">Licenses</a></li>
189+
</ul>
190+
</p>
191+
</div>
192+
</div>
193+
<!-- <ul class="list-unstyled">
194+
<li><a style="font-weight:bold" href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
195+
<li><a href="https://github.com/git-for-windows/git" target="_blank">Repository</a></li>
196+
<li><a href="http://groups.google.com/group/git-for-windows" target="_blank">Mailing List</a></li>
197+
<li><a href="https://github.com/git-for-windows/git/releases/">All Releases</a></li>
198+
<li><a href="https://wingit.blob.core.windows.net/files/index.html">Snapshots</a></li>
199+
<li><a href="https://github.com/git-for-windows/build-extra/blob/master/ReleaseNotes.md#licenses">Licenses</a></li>
200+
</ul>
201+
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a> -->
202+
203+
</div>
204+
</div>
205+
206+
<!-- <footer>
132207
<div class="content">
133208
<ul class="list-unstyled">
134209
<li><a style="font-weight:bold" href="https://github.com/git-for-windows/git/wiki/FAQ" target="_blank">FAQ</a></li>
@@ -141,7 +216,7 @@ <h3><span class="gittext">Git for Windows SDK</span> : Contributing Code</h3>
141216
<a href="index.html"><h1 class="gittext lowercase">Git for Windows</h1></a>
142217
<div class="stud"></div>
143218
</div>
144-
</footer>
219+
</footer> -->
145220
<script src="js/pack.js"></script>
146221
<script>
147222
$(document).ready(function() {

0 commit comments

Comments
 (0)