-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
55 lines (43 loc) · 1.74 KB
/
popup.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Liu++</title>
<script src="popup.js"></script>
<link rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/popup.css"/>
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.css"/>
</head>
<body style="background-color: #FAFAFA">
<div class="container main-div">
<h3 class="header-text">Liu++</h3>
<hr/>
<button id="studentportalBtn" class="btn btn-success">Studentportalen</button>
<button id="bookARoomBtn" class="btn btn-info">Boka sal</button>
<button id="suggestionsBtn" class="btn btn-danger">Problem eller förslag</button>
<p class="bottom-text">Om du är intresserad av att bidra
kontakta mig på github</p>
<div class="row social-icons well">
<a href="https://se.linkedin.com/pub/nils-eriksson/47/841/959" target='_blank'>
<i class="fa fa-linkedin fa-lg col-xs-2 col-xs-offset-2"></i>
</a>
<a href="https://github.com/Niler851" target="_blank">
<i class="fa fa-github fa-lg col-xs-2"></i>
</a>
<a href="https://www.facebook.com/nils.eriksson.750" target="_blank">
<i class="fa fa-facebook-official fa-lg col-xs-4"></i>
</a>
</div>
<footer class="row footer">
<div class="container">
<a class="text-muted" href="http://ventureinto.space/" target="_blank"> <span
class="glyphicon glyphicon-console"
aria-hidden="true"></span>
Nils Eriksson</a>
<p class="mail text-muted">[email protected]</p>
</div>
</footer>
</div>
</body>
</html>