-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
64 lines (62 loc) · 1.49 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<title>suggestr.co</title>
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700,900italic' rel='stylesheet' type='text/css'>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
}
html body{
background-color: #00bcec;
text-align: center;
font-family: "Source Sans Pro";
padding-top: 14%;
color: white;
}
html body h1{
font-weight: 400;
font-size: 72px;
padding-bottom: 20px;
}
html body h1 span{
font-weight: 700;
}
html body div.top{
font-weight: 400;
font-size: 24px;
width: 60%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
html body div.bottom{
margin-top: 120px;
}
a:visited { text-decoration: none; color:black; }
a:hover { text-decoration: none; color:black; }
a:focus { text-decoration: none; color:black; }
a:hover, a:active { text-decoration: none; color:black }
html body div.bottom span{
background-color: #000;
font-style: normal;
border-radius: 10px;
color: white;
padding: 5px 15px;
font-family: menlo, monospace;
}
</style>
</head>
<body>
<h1>
<span>Suggestr</span>.co
</h1>
<div class="top">
Suggestr is an app that helps university students find courses at their schools based on croudsourced information from their classmates.
</div>
<div class="bottom">
<a href="https://github.com/luciencd/suggestr"><span>Git</span></a>
</div>
</body>
</html>