-
Notifications
You must be signed in to change notification settings - Fork 2
/
spaces.html
53 lines (51 loc) · 2.56 KB
/
spaces.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spaces</title>
<script src="https://kit.fontawesome.com/cfd0f1d190.js" crossorigin="anonymous"></script>
<link rel = "icon" href = "https://qph.cf2.quoracdn.net/main-qimg-4d340b8b704ccfc33ac16dd261b6c121-lq" type = "image/x-icon">
<link rel="stylesheet" href="/css/spacepage.css">
<link rel="stylesheet" href="./css/landingPage.css">
</head>
<body style="background-color:gainsboro; font-family: Arial, Helvetica, sans-serif;">
<div id="navbarWrapper">
</div>
<br><br><br>
<div style="display:grid; grid-template-columns: repeat(2,1fr); grid-gap: 30px; margin-left: 13rem; padding-top: 1rem;">
<div style="width:40% ;" id="out_card">
<div id="top-div">
<div id="top-con">
<h3 style="font-weight: 600; margin-top: 1rem; margin-bottom: 0.5rem;">Welcome to Spaces!</h3>
<h5 style="color: grey; font-weight: 500; margin-bottom: 0.7rem;">Follow Spaces to explore your interests on Quora.</h5>
<button id="sbtn">Create a Space</button>
<button id="sbtn">Discover Spaces</button>
</div>
<img src="./Spacepage img/img1.jpg" alt="" id="top-img">
</div>
<h3 style="margin-top: 1rem; margin-bottom: 0.6rem;">Discover Spaces</h3>
<h4 style="margin-top: 1rem; margin-bottom: 1.5rem;">Spaces you might like</h4>
<div id="card_cont">
</div>
</div>
<div id="right">
<div id="invites">
Pending Invites
</div>
<div id="mail">
<br>
<svg style="margin-top: 0.5rem; color:gainsboro; " width="24" height="19" xmlns="http://www.w3.org/2000/svg"><g class="icon_svg-stroke" stroke="#666" stroke-width="1.5" fill="none" fill-rule="evenodd" stroke-linejoin="round"><path d="M4.5 6.5h15v12h-15z"></path><path stroke-linecap="round" d="M4.5 7.5 12 14l7.5-6.5"></path></g></svg>
<h5 style="font-weight: 100; color: gray; line-height: 0px; margin-top: 1rem; margin-bottom: 1rem;">No invites</h5>
<br>
</div>
</div>
</div>
</body>
<script src="/js/spacespage.js"></script>
<script type="module">
import navbar from "./components/navbar.js";
document.querySelector('#navbarWrapper').innerHTML=navbar();
</script>
</html>