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

Side by Side Diff: src/site/samples/terminal/example/terminal.css

Issue 27267004: Re-configured samples page. (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 7 years, 2 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
OLDNEW
(Empty)
1 /*
2 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the COPYING file.
5 */
6
7 ::selection {
8 background: #FF5E99;
9 }
10
11 html, body {
12 width: 100%;
13 height: 100%;
14 margin: 0;
15 }
16
17 body {
18 font-size: 12px;
19 font-family: Inconsolata, monospace;
20 color: white;
21 background-color: black;
22 }
23
24 .dropping {
25 background-image: -webkit-gradient(
26 linear, left bottom, left top,
27 color-stop(0.13, rgb(209,144,23)),
28 color-stop(0.57, rgb(251,173,51)),
29 color-stop(0.79, rgb(255,208,77))
30 );
31 background-image: -moz-linear-gradient(
32 center bottom,
33 rgb(209,144,23) 13%,
34 rgb(251,173,51) 57%,
35 rgb(255,208,77) 79%
36 );
37 }
38
39 #container {
40 padding: 1em 1.5em 1em 1em;
41 }
42
43 #container output {
44 clear: both;
45 width: 100%;
46 }
47 #container output h3 {
48 margin: 0;
49 }
50
51 #container output pre {
52 margin: 0;
53 }
54
55 .input-line {
56 display: -webkit-box;
57 -webkit-box-orient: horizontal;
58 -webkit-box-align: stretch;
59 display: -moz-box;
60 -moz-box-orient: horizontal;
61 -moz-box-align: stretch;
62 display: box;
63 box-orient: horizontal;
64 box-align: stretch;
65 clear: both;
66 }
67
68 .input-line > div:nth-child(2) {
69 -webkit-box-flex: 1;
70 -moz-box-flex: 1;
71 box-flex: 1;
72 }
73
74 .prompt {
75 white-space: nowrap;
76 color: green;
77 margin-right: 7px;
78 display: -webkit-box;
79 -webkit-box-pack: center;
80 -webkit-box-orient: vertical;
81 display: -moz-box;
82 -moz-box-pack: center;
83 -moz-box-orient: vertical;
84 display: box;
85 box-pack: center;
86 box-orient: vertical;
87 -webkit-user-select: none;
88 -moz-user-select: none;
89 user-select: none;
90 }
91
92 .cmdline {
93 outline: none;
94 background-color: transparent;
95 margin: 0;
96 width: 100%;
97 font: inherit;
98 border: none;
99 color: inherit;
100 }
101
102 .folder {
103 color: blue;
104 }
105
106 .ls-files {
107 height: 45px;
108 /* Default, but changed by js depending on length of filename */
109 -webkit-column-width: 100px;
110 -moz-column-width: 100px;
111 -o-column-width: 100px;
112 column-width: 100px;
113 }
114
115 /* Themes */
116 body.cream {
117 color: black;
118 background-color: #fffff3;
119 }
120
121 .cream .prompt {
122 color: purple;
123 }
124
125 .cream .cmdline {
126 color: black;
127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698