-
Notifications
You must be signed in to change notification settings - Fork 14
/
footer.html
61 lines (52 loc) · 1.74 KB
/
footer.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
<link rel="import" href="components/polymer/polymer.html">
<link rel="import" href="components/core-icon-button/core-icon-button.html">
<polymer-element name="page-footer">
<template>
<style>
:host {
display: block;
position: relative;
background-color: white;
padding: 20px;
width: 90%;
font-size: 1.2rem;
font-weight: 300;
}
core-icon-button {
position: absolute;
top: 3px;
right: 3px;
color: #636363;
}
.container{
margin: 20px;
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
}
.partner{
margin-left: 40px;
}
</style>
<div class="container">
<hr>
<div layout horizontal center wrap>
<div layout center justified>
<h3 class="partners-text">Partner Organizations</h3>
</div>
<div class="partner">
<a href="http://developers.google.com/" target="_top"><img class="featurette-image img-responsive" src="images/partners/google.png" alt="Google"></a>
</div>
<div class="partner">
<a href="http://code42.com" target="_top"><img class="featurette-image img-responsive" src="images/partners/code42.svg" ></a>
</div>
<div class="partner">
<a href="http://agosto.com" target="_top"><img class="featurette-image img-responsive" src="images/partners/Agosto_Logo_Large-60h.png" ></a>
</div>
</div>
<content></content>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>