aboutsummaryrefslogtreecommitdiff
path: root/templates/licenses/linaro.html
blob: 9a78772474cb073929a26ca82105de7486e64c45 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{% extends "license.html" %}

{% block header %}
<title>License Agreement</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style language="text/css">
  html, body {
//    background: #aaa;
    color: black;
    margin: 0;
    padding: 0;
    font-size: 11pt;
    font-family: Sans;
  }

  div#head {
    height: 110px;
    background: white;
    padding: 2em;
  }

  h1 {
    padding-left: 200px;
    margin: 0;
    color: #444;
    font-size: 140%;
    font-weight: bold;
    text-align: center;
    background-image: url(/static/linaro.png);
    background-repeat: no-repeat;
    height: 110px;
  }

  #content {
    margin: 0 auto;
    min-width: 600px;
    max-width: 920px;
  }

  h2 {
    font-size: 120%;
  }

  #license-text {
    background: white;
    color: black;
    margin: 2em;
    padding: 2em;
    text-align: left;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  #actions {
    padding: 2em;
    font-size: 80%;
    margin-bottom: 4em;
  }

  #actions .button {
    background: #e80;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    margin-left: 10px;
    float: right;
    font-size: 110%;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }

  #actions .button-decline:hover {
    background: #f90;
  }

  #actions .button-accept {
    background: #8b4;
  }

  #actions .button-accept:hover {
    background: #9c5;
  }
</style>
{% endblock %}

{% block content-header %}
<div id="head">
<h1>
</h1>
</div>

<div id="content">

<div id="license-text">
{% endblock %}
{% block content-footer-top %}
  </div><!-- license-text -->

  <div id="actions">

  <div style="float: left;">If accepting the license doesn't work, enable
    cookies in your browser.</div><br />
{% endblock %}
{% block content-footer-bottom %}
  </div>

  </div><!-- content -->
{% endblock %}