Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: tools/resources/about_credits.tmpl

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/remove_stale_pyc_files.py ('k') | tools/resources/about_credits_entry.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!mojo mojo:sky_viewer
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Credits</title>
6 <import src="/packages/sky/framework/elements/sky-scrollable.sky" />
7 <style>
8 body {
9 background-color: white;
10 font-size: 84%;
11 max-width: 1020px;
12 }
13 .page-title {
14 font-size: 164%;
15 font-weight: bold;
16 margin-top: 26px; /* Avoid Android status bar */
17 }
18 .product {
19 background-color: #c3d9ff;
20 border-radius: 5px;
21 margin-top: 16px;
22 overflow: auto;
23 padding: 2px;
24 }
25 .product .title {
26 float: left;
27 font-size: 110%;
28 font-weight: bold;
29 margin: 3px;
30 }
31 .product .homepage {
32 float: right;
33 margin: 3px;
34 text-align: right;
35 }
36 .product .homepage::after {
37 content: " - ";
38 }
39 .product .show {
40 float: right;
41 margin: 3px;
42 text-align: right;
43 }
44 .licence {
45 background-color: #e8eef7;
46 border-radius: 3px;
47 clear: both;
48 padding: 16px;
49 }
50 .licence h3 {
51 margin-top: 0;
52 }
53 .licence pre {
54 white-space: pre;
55 }
56 .dialog #print-link,
57 .dialog .homepage {
58 display: none;
59 }
60 sky-scrollable {
61 height: -webkit-fill-available;
62 }
63 pre, span, a {
64 display: paragraph;
65 }
66 </style>
67 </head>
68 <body>
69 <sky-scrollable>
70 <span class="page-title" style="float:left;">Credits</span>
71 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects -->
72 {{entries}}
73 </div>
74 </sky-scrollable>
75 </body>
76 </html>
OLDNEW
« no previous file with comments | « tools/remove_stale_pyc_files.py ('k') | tools/resources/about_credits_entry.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698