blob: f0261f026b6fd944249bda76be475d51c1d8e472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solutions Repo</title>
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="top-bar">
<div id="logo"><a href="#"><img src="assets/images/placeholder.png"></a></div>
<nav>
<ul>
<li><a href="#">Register</a></li>
<li><a href="#">Log In</a></li>
<li class="drop-down">
<a href="#">Courses</a>
<nav class="drop-menu">
<ul>
<li class="side-drop"><a href="#">First Year</a>
<div class="side-menu">
<a href="CSC108"></a>
<a href="CSC148"></a>
<a href="CSC165"></a>
</div>
</li>
<li>
<a href="#">Second Year</a></li>
<li><a href="#">Third Year</a></li>
<li><a href="#">Fourth Year</a></li>
</ul>
</nav>
</li>
<!-- <li id="header"><header><a href="#"><img src="assets/images/logo.png"></a></header></li> -->
</ul>
</nav>
</div>
<main>
<!--made the id in to a class-->
<div class='search solutions-container'>
<div id="solutions">
<button id="add-solution"><h3>Add a solution</h3></button>
<p id="show-path">CSC148 > Winter 2015 > Question 1</p>
<section id="sol-1">
<div class="post-info">
<div class="left">
<img class="user-image" src="assets/images/user-default.png">
<p class="username">jSmith123</p>
</div>
<div class="right">
<button class="upvote"><img src="assets/images/up_arrow.png"></button>
<p class="num-upvotes">3</p>
<button class="downvote"><img src="assets/images/down_arrow.png"></button>
<p class="num-downvotes">-1</p>
</div>
</div>
</section>
</div>
</div>
</main>
<footer>
<div id="footer-container">
<nav>
<a href="#">Contact</a>
<a href="#">About Us</a>
<a href="#">Terms of Use</a>
</nav>
<h6>Copyright 2016</h6>
</div>
</footer>
</body>
</html>
|