Clean up CSS on default view
This commit is contained in:
parent
9c2c627140
commit
e5318cac29
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Laravel PHP Framework</title>
|
<title>Laravel PHP Framework</title>
|
||||||
<style>
|
<style>
|
||||||
@import url(//fonts.googleapis.com/css?family=Lato:300,400,700);
|
@import url(//fonts.googleapis.com/css?family=Lato:700);
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin:0;
|
margin:0;
|
||||||
|
@ -15,31 +15,22 @@
|
||||||
|
|
||||||
.welcome {
|
.welcome {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 300px;
|
height: 200px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-left: -150px;
|
margin-left: -150px;
|
||||||
margin-top: -150px;
|
margin-top: -100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:visited {
|
a, a:visited {
|
||||||
color:#FF5949;
|
display: block;
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
h1 {
|
||||||
text-decoration:underline;
|
font-size: 32px;
|
||||||
}
|
margin: 16px 0 0 0;
|
||||||
|
|
||||||
ul li {
|
|
||||||
display:inline;
|
|
||||||
margin:0 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin:2em 0;
|
|
||||||
color:#555;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in New Issue