23 lines
933 B
HTML
23 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<div class="card" id="header">
|
|
<h2 id='headertext'>Saved Courses</h2>
|
|
<div id="buttons" style="padding: 10px 0px 5px 10px;">
|
|
<button id="clear" class="matbut" style="background:#4CAF50">Clear</button>
|
|
<button id="open" class="matbut" style="background:#FFC107">Options</button>
|
|
</div>
|
|
</div>
|
|
<ul id= "courseList" style="list-style-type: none;padding: 5px;"></ul>
|
|
<h2 id="empty" style="font-weight: normal;font-size: large;margin: 60px 30px 40px 30px ;">Doesn't Look Like Anything To Me.<br>
|
|
<span style="font-size: small;display:table;margin:0 auto;font-weight: bold">(No Courses)</span><h2>
|
|
<script src="jquery-3.3.1.min.js"></script>
|
|
<script src="moment.min.js"></script>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|