Skip to content

Commit

Permalink
fixed person field
Browse files Browse the repository at this point in the history
  • Loading branch information
pratibha99 committed Nov 28, 2018
1 parent e4cd6d7 commit f7cc0da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion supremecourtapp/static/css/indexstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ body {
h1{
color: #ffffff;
font-family: 'Roboto', sans-serif;
font-size: 60;
margin: 0;
}
h2{
color: #ffffff;
font-family: 'Roboto', sans-serif;

}
p{
color: #ffffff;
Expand Down Expand Up @@ -59,7 +66,7 @@ p{

min-height: 200px;
grid-template-columns: auto auto;
padding: 10px;
padding: 5px;
justify-content: center;
align-items: center;
}
Expand Down
8 changes: 4 additions & 4 deletions supremecourtapp/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<!-- <img src="../static/img/gavel.jpg" id = "backgroundimg"> -->
<div class="container">
<h1> DECONSTRUCTING THE LAW </h1>
<p> United States Supreme Court Transcripts </p>
<h2> United States Supreme Court Transcripts </h2>

<div class="grid-container">
<div class="grid-item">

<input class = "inputfields" id = "title" type="text" placeholder= "Title" value="{{title}}">
<input class = "inputfields" id = "title" type="text" placeholder= "Title (ie: Miller v. Alabama)" value="{{title}}">

</div>

Expand All @@ -33,7 +33,7 @@ <h1> DECONSTRUCTING THE LAW </h1>
</div>
<div class="grid-item">

<input class = "inputfields" id = "name" type="text" placeholder= "Name" value="{{name}}">
<input class = "inputfields" id = "name" type="text" placeholder= "Name (ie: Justice Sotamayor)" value="{{name}}">

</div>

Expand Down Expand Up @@ -116,7 +116,7 @@ <h1> DECONSTRUCTING THE LAW </h1>
<td class="">{{record.top5}}</td>
<td class="">{{record.acts}}</td>
<td class="">{{record.person}}</td>
<td class="">{{record.text[0:120] + " ..."}}</td>
<td class="">{{record.text[0:100] + " ..."}}</td>
<td class="">{{record.score}}</td>


Expand Down

0 comments on commit f7cc0da

Please sign in to comment.