Skip to content

Commit

Permalink
first version of next-vote
Browse files Browse the repository at this point in the history
  • Loading branch information
joticajulian committed Feb 19, 2018
1 parent 475d0b1 commit 42fead6
Show file tree
Hide file tree
Showing 9 changed files with 779 additions and 0 deletions.
131 changes: 131 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
body
{
margin: 0;
padding: 0;
color: #555;
font-family: 'Montserrat', sans-serif;
background: #EFEFEF;
}

#header
{
margin: 0;
padding: 0;
border-top: 3px solid #C9E0ED;
background-color: rgb(255, 150, 0);
}

#accountinfo
{
margin-top: 20px;
}

#footer
{
padding: 50px;
margin: 0;
text-align: center;
background-color: black;
border-top: 1px solid #000;
}

#logo
{
padding: 10px 20px;
font-size: 200%;
}

.navbar {
margin-bottom: 0;
}

.m1{
margin-top: 20px;
}

.mt{
margin-top: 10px;
}

.mb{
margin-bottom: 10px;
}

.mtb{
margin-top: 10px;
margin-bottom: 10px;
}

.bg-white{
background-color: white;
}

.bg-black{
background-color: black;
}

.bg-steem
{
background-color: rgb(31,78,141);
}

.mz{
margin-bottom: 0;
margin-top: 0;
}

.cw{
color: white;
}

.box-plot{
border: 2px solid #807f7f;
margin: 10px;
}

.width50
{
width: 50px;
}

.info
{
background-color: white;
margin: 5px;
padding-top: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #999;
}

.labelinfo
{
font-weight: bold;
}

.message
{
text-align: center;
padding: 30px;
}

.responsive-plot
{
height: 300px;
}

.user_name
{
margin-bottom: 5px;
}

.post_title
{
font-size: 18px;
}

.post
{
margin-top: 30px;
margin-bottom: 30px;
}

Binary file added images/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/fundinggovernment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/no_photo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/steem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Next Vote</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="./css/main.css"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat|Sansita" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.steemjs.com/lib/latest/steem.min.js"></script>
</head>
<body>
<div class="container bg-white">
<div class="jumbotron bg-white">
<h1>Next Vote</h1>
<p>See which posts will receive a vote from a Bidbot. By <a href="https://steemit.com/@jga/">@jga</a></p>
</div>
<hr>
<div class="row">
<ul id="bot_list">
Loading...
</ul>
</div>
</div>
<div id="footer" class="container-fluid">
<span id="nextvoteby" class="is_ml"> Next Vote by <a href="https://steemit.com/@jga/">@jga</a></span><br>
<span id="seeitongithub" class="is_ml"> See it on <a href="https://github.com/joticajulian/next-vote/">github.com</a></span>
</div>
</body>
<!--<script src="./js/multilanguages.js?1"></script>-->
<script src="./js/next-vote.js?1"></script>
<script src="./js/utils.js?1"></script>
</html>
4 changes: 4 additions & 0 deletions js/multilanguages.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
var label = {};
label['en'] = {};
label['es'] = {};
label['fr'] = {};
Loading

0 comments on commit 42fead6

Please sign in to comment.