Skip to content

Instantly share code, notes, and snippets.

@duwaljyoti
Created November 15, 2017 09:13
Show Gist options
  • Save duwaljyoti/79d8613d18a4010bd5350e47821f70c5 to your computer and use it in GitHub Desktop.
Save duwaljyoti/79d8613d18a4010bd5350e47821f70c5 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Note App</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: 'Raleway', sans-serif;
font-weight: 100;
height: 100vh;
margin: 0;
}
.component-header {
padding-bottom: 34px;
padding-top: 34px;
}
li .options{
cursor: pointer;
}
li:hover .options{
margin-right:20px;
font-size: 15px;
}
.glyphicon {
margin-right: 20px;
}
.header-nav > a {
padding-right: 20px;
}
.header-nav {
padding: 20px;
text-align: left;
}
body {
font-size: 16px;
font-weight: 600;
}
.note-form {
padding-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div id="app" class="flex-center position-ref full-height">
</div>
</div>
</body>
<script src="{{ asset('js/app.js') }}"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment