Skip to content

Commit

Permalink
Update whole page.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitmerchant1990 committed Jul 6, 2017
1 parent d24fd33 commit 8f9a408
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 35 deletions.
14 changes: 10 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
h1{
text-shadow: #525252 0px 0px 20px;
/*text-shadow: #525252 0px 0px 20px;*/
font-weight: bold;
}

Expand All @@ -13,6 +13,11 @@ pre {
white-space:nowrap;
}

.h3, h3 {
font-size: 20px;
font-weight: 600;
}

.col-md-4 p{
color: #555;
}
Expand All @@ -31,7 +36,7 @@ pre {
}

.tagline{
text-shadow: #525252 0px 0px 20px;
/*text-shadow: #525252 0px 0px 20px;*/
}

.center{
Expand All @@ -51,15 +56,16 @@ pre {
}

.logo-image{
width: 150px;
width: 70px;
height: auto;
display: initial;
}

.jumbotron {
padding-top: 0;
background-color: #4CAF50;
color: #ffffff;
background-image: url(https://raw.githubusercontent.com/amitmerchant1990/test/master/northern_lights_iceland_aurora_borealis.jpg);
background-size: cover;
}

.navbar-fixed-bottom, .navbar-fixed-top {
Expand Down
Binary file added img/markdownify-macos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 24 additions & 31 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,45 +7,28 @@
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="A minimal Markdown editor">
<meta name="author" content="Amit Merchant">
<link rel="icon" href="../../favicon.ico">
<link rel="icon" href="favicon.ico">

<meta property="og:title" content="Markdownify" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.amitmerchant.com/electron-markdownify/" />
<meta property="og:url" content="https://markdownify.js.org/" />
<meta property="og:description" content="A minimal Markdown editor" />
<meta property="og:image" content="https://raw.githubusercontent.com/amitmerchant1990/test/master/markdownify-mockup1920-1.jpg"/>
<!-- for Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Markdownify" />
<meta name="twitter:creator" content="@amit_merchant">
<meta name="twitter:description" content="A minimal Markdown editor" />
<meta name="theme-color" content="#4CAF50">
<title>Markdownify</title>
<meta name="twitter:image" content="https://raw.githubusercontent.com/amitmerchant1990/test/master/markdownify-mockup1920-1.jpg">
<meta name="theme-color" content="#0b1320">
<title>Markdownify - A minimal Markdown editor</title>

<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/darcula.css" />
</head>

<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand pull-right" href="https://twitter.com/amit_merchant">Twitter</a>
<a class="navbar-brand" href="#">Markdownify</a>
</div>
<!--<div id="navbar" class="navbar-collapse collapse">
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="text" placeholder="Email" class="form-control">
</div>
<div class="form-group">
<input type="password" placeholder="Password" class="form-control">
</div>
<button type="submit" class="btn btn-success">Sign in</button>
</form>
</div><!--/.navbar-collapse -->
</div>
</nav>

<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container text-center">
Expand All @@ -57,12 +40,12 @@ <h1>Markdownify</h1>
</p>
</div>
<div>
<a href="https://github.com/amitmerchant1990/electron-markdownify/releases/tag/v1.2.0" class="btn btn-primary btn-lg">Download</a>
<a href="https://github.com/amitmerchant1990/electron-markdownify/releases/tag/v1.2.0" class="btn btn-success btn-lg">Download</a>
<a href="https://github.com/amitmerchant1990/electron-markdownify/" class="btn btn-danger btn-lg">GitHub</a>
</div>
</div>
<div class="text-center">
<img src="https://raw.githubusercontent.com/amitmerchant1990/electron-markdownify/master/img/markdownify.gif" class="img-responsive custom-image">
<img src="https://raw.githubusercontent.com/amitmerchant1990/test/master/final-retina-macbookpro-mockup.png" class="img-responsive custom-image">
</div>
</div>

Expand Down Expand Up @@ -111,6 +94,8 @@ <h4>Other features including...</h4>
<li>Save the Markdown preview as PDF</li>
<li>App will keep alive in tray for quick usage</li>
<li>Full screen mode</li>
<li>Supports multiple cursors</li>
<li>Save the Markdown preview as PDF</li>
<ul>
<li>Write distraction free.</li>
</ul>
Expand All @@ -131,14 +116,22 @@ <h4>Other features including...</h4>
<h2 class="key_features">Develop</h2>
</div>
<div>
<p>Install it using : <code>npm install electron-markdownify</code></p>
<p>And then run:</p>
<p>To clone and run this application, you'll need <a href="https://git-scm.com/">Git</a> and <a href="https://nodejs.org/en/download/">Node.js</a> (which comes with <a href="http://npmjs.com/">npm</a>) installed on your computer. From your command line:</p>
</div>
<div>
<pre>
<code class="bash">
$> cd PATH-TO-MARKDOWNIFY-DESKTOP-APP
$> npm install && npm start
# Clone this repository
$ git clone https://github.com/amitmerchant1990/electron-markdownify

# Go into the repository
$ cd electron-markdownify

# Install dependencies
$ npm install

# Run the app
$ npm start
</code>
</pre>
</div>
Expand All @@ -158,7 +151,7 @@ <h2 class="key_features">Credits</h2>
<hr>

<footer>
<p class="text-center">&copy; 2016 <a href="https://www.amitmerchant.com/">Amit Merchant</a>.</p>
<p class="text-center">Created by <a href="https://www.amitmerchant.com/">Amit Merchant</a>.</p>
</footer>

<!-- Bootstrap core JavaScript
Expand Down

0 comments on commit 8f9a408

Please sign in to comment.