Skip to content

Commit

Permalink
added layoutand external css sheet :D
Browse files Browse the repository at this point in the history
  • Loading branch information
vinamratasingal committed Aug 3, 2012
1 parent fa2e3fb commit 1ad6180
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 4 deletions.
44 changes: 44 additions & 0 deletions Public/stylesheet.css
Expand Up @@ -76,6 +76,50 @@ float: left;

}

#header3 {
margin: 10px auto;
width: 960px;
height: 45px;
font-family: Impact;
color: Tomato;
text-align: center;
}

#A {
margin: 10px;
font-family: Times;
color: Purple;
}

#B {
margin: 10px;
font-family: Times;
color: Purple;
}

#C {
margin: 10px;
font-family: Times;
color: Purple;
}

#D {
margin: 10px;
font-family: Times;
color: Purple;
}

#E {
margin: 10px;
font-family: Times;
color: Purple;
}

text {
margin: 40px;
text-align: center;
width: 960px;
}

li {
display:inline;
Expand Down
4 changes: 2 additions & 2 deletions Views/about.html.erb
Expand Up @@ -2,12 +2,12 @@
<html>
<head>
<title> About </title>
<link rel="stylesheet" href="stylesheet_about.css" type="text/css" media="screen" title="no title" charset="utf-8">


</head>

<body>
<div id = "header">
<div id = "header3">
<h1> About </h2>
</div>

Expand Down
2 changes: 1 addition & 1 deletion Views/contact.html.erb
Expand Up @@ -3,7 +3,7 @@
<head>
<title> Contact Us
</title>
<link rel="stylesheet" href="stylesheet_contact.css" type="text/css" media="screen" title="no title" charset="utf-8">


</head>

Expand Down
2 changes: 1 addition & 1 deletion Views/index.html.erb
Expand Up @@ -3,7 +3,7 @@
<head>
<title> myTix: Find your tickets, faster.
</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css" media="screen" title="no title" charset="utf-8">



</head>
Expand Down
24 changes: 24 additions & 0 deletions Views/layout.html.erb
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="Public/stylesheet.css" type="text/css" media="screen" title="no title" charset="utf-8">

</head>

<body>
<section id = "bottom">
<div id = "signup_button">
<button class="btn-small">Sign up!</button>
</div>

<div id = "navigation">
<ul>
<li><a href="about.html" id="" title="about">about</a> </li>
<li>Blog</li>
<li>News</li>
<li><a href="contact.html" title="contact"> contact </a></li>
</ul>
</div>
</section>
</body>
</html>

0 comments on commit 1ad6180

Please sign in to comment.