index.php 1.64 KB
Newer Older
1 2 3 4 5 6
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8"> 
	<title>Welcome To Laravel!</title> 
 
7 8 9
	<link href="http://fonts.googleapis.com/css?family=Quattrocento&amp;v1" rel="stylesheet" type="text/css" media="all" />
	<link href="http://fonts.googleapis.com/css?family=Ubuntu&amp;v1" rel="stylesheet" type="text/css" media="all" />
	<link href="http://fonts.googleapis.com/css?family=Lobster+Two&amp;v1" rel="stylesheet" type="text/css" media="all" />
10 11 12

	<style type="text/css">
		body {
13
			background-color: #eee;
14
			color: #6d6d6d;
15 16 17 18
			font-family: 'Ubuntu';
			font-size: 15px;
		}

19
		a {
20 21 22
			color: #7089b3;
			font-weight: bold;
			text-decoration: none;
23
		}
24 25 26 27 28 29 30

		h1.laravel {
			font-family: 'Lobster Two', Helvetica, serif;				
			font-size: 60px;
			margin: 0 0 15px -10px;
			padding: 0;
			text-shadow: -1px 1px 1px #fff;
31
		}
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

		h2 {
			font-family: 'Quattrocento', serif;
			font-size: 30px;
			margin: 30px 0 0 0;
			padding: 0;
			text-shadow: -1px 1px 1px #fff;
		}

		p {
			margin: 10px 0 0 0;
			line-height: 25px;
		}

		#wrapper {
			background-color: #fff;
48
			border-radius: 10px;
49 50 51
			margin: 0 auto;
			padding: 10px;
			width: 80%;
52 53
		}

54 55
		#wrapper h2:first-of-type {
			margin-top: 0;
56 57
		}

58 59 60 61 62 63 64
		#header {
			margin: 0 auto;
			margin-bottom: 15px;
			margin-top: 20px;
			width: 80%;
		}
	</style>
65 66
</head> 
<body>
67 68 69
	<div id="header">
		<h1 class="laravel">Laravel</h1>
	</div>
70

71 72
	<div id="wrapper">
		<h2>Installation Complete!</h2>
73

74
		<p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>
75

76
		<p>Need to learn more? Peruse our <a href="http://docs.laravel.com">wonderful documentation</a>.</p>
77
	</div>
78 79
</body> 
</html>