Merge branch 'bitches' of github.com:olinpin/twitter-project into cssgrid
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Twitter sports dashboard</title>
|
||||
<link rel="stylesheet" href="./style/style.css">
|
||||
<link rel="stylesheet" href="./style/responsive.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,400&display=swap" rel="stylesheet">
|
||||
@@ -15,6 +16,7 @@
|
||||
<link rel="icon" type="image/x-icon" href="./media/logo.png">
|
||||
</head>
|
||||
<body>
|
||||
<!-- <div id="tweet" style="height: 200px;"></div> -->
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<div class="logo">
|
||||
@@ -59,14 +61,47 @@
|
||||
<div class="main">
|
||||
<div class="maintable">
|
||||
<div class="leftcol column">
|
||||
<h1 class="colheader">LATEST CLUCCS</h1>
|
||||
<span class="colheader">Latest Cluccs</span>
|
||||
<div class="tweetcontainer">
|
||||
<div class="tweet">
|
||||
<img src="https://pbs.twimg.com/profile_images/1158803404656959490/9MKSbW4O_400x400.jpg" alt="" class="tweet-profilepicture">
|
||||
<div class="tweet-content">
|
||||
<div class="tweet-name">
|
||||
<span class="tweet-nickname">Tim Wijma</span>
|
||||
<span class="tweet-username">@timwijma</span>
|
||||
</div>
|
||||
<span class="tweet-text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus velit maiores non deserunt adipisci dicta quam nobis ad. Iste, unde?</span>
|
||||
<div class="tweet-interactions">
|
||||
<div class="tweet-interaction tweet-likes">
|
||||
<span class="material-symbols-outlined">favorite</span>
|
||||
<span>20</span>
|
||||
</div>
|
||||
<div class="tweet-interaction tweet-retweets">
|
||||
<span class="material-symbols-outlined">repeat</span>
|
||||
<span>20</span>
|
||||
</div>
|
||||
<div class="tweet-interaction tweet-replies">
|
||||
<span class="material-symbols-outlined">chat_bubble</span>
|
||||
<span>20</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="centercol column">
|
||||
<h1 class="colheader">FILTERED CLUCCS</h1>
|
||||
<span class="colheader">Filtered Cluccs</span>
|
||||
</div>
|
||||
<div class="searchbar column"></div>
|
||||
<div class="popchart column">
|
||||
<h1 class="colheader chartheader">SPORTS POPULARITY CHART</h1>
|
||||
<div class="rightcol column">
|
||||
<div class="searchcontainer column">
|
||||
<input class = "searchbar" type = "text" placeholder="SEARCH CLUCCS...">
|
||||
<button class = "button">SORT BY</button>
|
||||
<button class = "button">BLOCKED WORDS</button>
|
||||
<button class = "button">POPULARITY FILTER</button>
|
||||
</div>
|
||||
<div class="popchart column">
|
||||
<h1 class="colheader chartheader">SPORTS POPULARITY CHART</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
@@ -84,25 +119,36 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/lib/jquery-2.1.1.min.js"></script>
|
||||
<script src="/lib/jquery.flot.min.js"></script>
|
||||
<script src="/lib/core.js"></script>
|
||||
<script src="/lib/charts.js"></script>
|
||||
<script src="/lib/log.js"></script>
|
||||
<script src="./lib/tweets.js"></script>
|
||||
<script src="./js/code.js"></script>
|
||||
<script src="./js/connection.js"></script>
|
||||
<script>
|
||||
// block("#tweet").tweets({
|
||||
// memory: 20
|
||||
// });
|
||||
// events.connect("tweet", "#tweet");
|
||||
|
||||
// // create a rolling chart block
|
||||
// block('#graph').rolling_chart({
|
||||
// memory: 150,
|
||||
// chart: {
|
||||
// yaxis: {
|
||||
// min: -100,
|
||||
// max: 100
|
||||
// },
|
||||
// xaxis: {
|
||||
// show: false
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
|
||||
// // connect sample event to graph
|
||||
// events.connect('tweet', '#graph');
|
||||
</script>
|
||||
</body>
|
||||
<!-- <script>
|
||||
// create a rolling chart block
|
||||
block('#graph').rolling_chart({
|
||||
memory: 150,
|
||||
chart: {
|
||||
yaxis: {
|
||||
min: -100,
|
||||
max: 100
|
||||
},
|
||||
xaxis: {
|
||||
show: false
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// connect sample event to graph
|
||||
events.connect('sample', '#graph');
|
||||
</script> -->
|
||||
</html>
|
||||
Reference in New Issue
Block a user