Commit 6681bbe5 authored by Larry Schultheis's avatar Larry Schultheis
Browse files

Added padding to html

parent a054f187
Loading
Loading
Loading
Loading
+90 −68
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
    <!-- Meat 'n potatoes -->
    <body onload="initializeIndex()">
        <div id="interactivity" class="jumbotron">
            <div style="padding-left: 5%; padding-right: 5%;">
                <h1>Spam Hunter</h1>
                <br>
                <!-- User interactivity portion -->
@@ -23,6 +24,7 @@
                    <button id="clear" onclick="clearIndex()">Clear</button>
                </div>
            </div>
        </div>
        <br>
        <!-- List used in spam -->
        <div id="spam_messages_list">
@@ -37,6 +39,23 @@
                </p>
        </div>

        </div>
        <br>

        <div style="padding-right: 5%; padding-left: 5%;">
            <!-- List used in spam -->
            <div id="spam_messages_list">
                    <p>Some random sample spam messages (unanimously voted by all 4 algorithms):
                            <ol>
                                <li id="top1">Message 1</li>
                                <li id="top2">Message 2</li>
                                <li id="top3">Message 3</li>
                                <li id="top4">Message 4</li>
                                <li id="top5">Message 5</li>
                            </ol>
                        </p>
                </div>
        
                <div id="top_algorithm">
                    <p>Algorithm currently in use: </p><p name="algorithmInUse"></p>
                    <br>
@@ -86,6 +105,8 @@
        
                    </table>
                </div>
            </div>

            <br>
            <div id="confusion_matrices">
                <p>Confusion matrices for each algorithm will go here</p>
@@ -100,6 +121,7 @@
                </div>
            </div>


    </body>
</html>