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

Unified Diff: remoting/credits/main.css

Issue 2728913002: [remoting android] Generate trimmed-down credits.html. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« remoting/android/BUILD.gn ('K') | « remoting/credits/credits_js.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/credits/main.css
diff --git a/remoting/credits/main.css b/remoting/credits/main.css
new file mode 100644
index 0000000000000000000000000000000000000000..2aed081aa2c2d5871e5a2e36587c4ea11d01364e
--- /dev/null
+++ b/remoting/credits/main.css
@@ -0,0 +1,137 @@
+/* Copyright 2017 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
+blockquote, a, abbr, acronym, address, big, cite, code, del, dfn, em,
+font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
+dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
+tfoot, thead, tr, th, td, button {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 100%;
+ font-family: inherit;
+ vertical-align: baseline;
+}
+
+body {
+ font-family: "Arial", "Helvetica", sans-serif;
+ color: #222;
+ font-size: 13px;
+ margin: 0;
+ direction: __MSG_@@bidi_dir__;
+}
+
+a {
+ text-decoration: none;
+ color: #15c;
+ cursor: pointer;
+}
+
+a:active {
+ color: #d14836;
+}
+
+strong, b {
+ color: #000;
+}
+
+::-webkit-scrollbar {
+ width: 16px;
+ height: 16px;
+}
+
+::-webkit-scrollbar-button {
+ height: 0px;
+ width: 0px;
+}
+
+::-webkit-scrollbar-thumb {
+ min-height: 28px;
+ padding-top:100px;
+ background-clip:padding-box;
+ background-color: rgba(0,0,0,0.2);
+ box-shadow: inset 1px 1px 0px rgba(0,0,0,0.10),
+ inset 0px -1px 0px rgba(0,0,0,0.07);
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background-color: rgba(0,0,0,0.4);
+ box-shadow: inset 1px 1px 1px rgba(0,0,0,0.25);
+}
+
+::-webkit-scrollbar-thumb:active {
+ box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
+ background-color: rgba(0,0,0,0.5);
+}
+
+::-webkit-scrollbar-track:hover {
+ background-color:rgba(0,0,0,0.05);
+ box-shadow: inset 1px 0px 0px rgba(0,0,0,0.10);
+}
+
+::-webkit-scrollbar-track:active {
+ background-color:rgba(0,0,0,0.05);
+ box-shadow: inset 1px 0px 0px rgba(0,0,0,0.14),
+ inset -1px -1px 0px rgba(0,0,0,0.07);
+}
+
+::-webkit-scrollbar-track-piece {
+ background: white;
+}
+
+h2 {
+ font-size: 16px;
+ line-height:24px;
+ font-weight: normal;
+ color: #222;
+ margin-bottom: 10px;
+}
+
+section h2 {
+ color: #666;
+}
+
+header {
+ display: flex;
+ width: 100%;
+}
+
+html {
+ user-select: none;
+ cursor: default;
+}
+
+section {
+ width: 690px;
+ margin: 30px auto;
+}
+
+section {
+ border: 1px solid #e5e5e5;
+ background: #f9f9f9;
+ padding: 20px 30px 20px 30px;
+ border-radius: 3px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.07);
+ position: relative;
+}
+
+td {
+ vertical-align: middle;
+}
+
+thead {
+ font-weight: bold;
+}
+
+button {
+ white-space:nowrap;
+}
+
+* {
+ box-sizing: border-box;
+}
« remoting/android/BUILD.gn ('K') | « remoting/credits/credits_js.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698