forked from patik/console.log-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
169 lines (153 loc) · 6.11 KB
/
style.css
File metadata and controls
169 lines (153 loc) · 6.11 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
@charset "utf-8";
/* These styles are strictly for the demo and have nothing to do with the log() function */
/* Reset borrowed from html5boilerplate.com (via Eric Meyer and HTML5Doctor), then trimmed */
html, body, div, span, h1, p, pre, a, code, em, img, strong, ul, li,
article, section { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
article, section { display:block; }
::-moz-selection { background: #0069d2; color:#fff; text-shadow: none; }
::selection { background:#0069d2; color:#fff; text-shadow: none; }
html {
height: 100%;
min-height: 100%;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
body {
line-height: 1.4em;
/* Sorry, I'm not familiar enough with standard Mac fonts, feel free to recommend some */
font-family: "ff-tisa-web-pro-1", "ff-tisa-web-pro-2", Calibri, "Helvetica Neue", Trebuchet, Helvetica, sans-serif;
font-smooth: always;
font-size: 1.2em;
background-color: #f9f9f9;
color: #444;
background-color: #efefef;
background-image: -moz-linear-gradient(top, #efefef 0%, #f9f9f9 100%); /* Firefox */
background-image: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#f9f9f9)); /* Webkit 2010 */
background-image: -webkit-linear-gradient(top, #efefef, #f9f9f9); /* Webkit 2011+ */
background-image: -ms-linear-gradient(top, #efefef, #f9f9f9); /* IE10 */
background-image: -o-linear-gradient(top, #efefef, #f9f9f9); /* Opera 11.10+ */
background-image: linear-gradient(top, #efefef, #f9f9f9);
}
h1 {
margin: 0 auto 1em;
text-align: center;
font-family: "ff-masala-web-pro-1", "ff-masala-web-pro-2", Calibri, "Helvetica Neue", Trebuchet, Helvetica, sans-serif;
font-size: 140%;
}
a:hover {
text-decoration: none;
}
/* Main container. Apologies to people reading this in 2014 -- we didn't know how to use article/section properly back in wee old 2011! */
article {
max-width: 960px;
margin: 1em auto;
padding: 1em;
height: 100%;
background-color: #fff;
-moz-box-shadow: 0 0 4px rgba(100,100,100,0.4);
-webkit-box-shadow: 0 0 4px rgba(100,100,100,0.4);
-o-box-shadow: 0 0 4px rgba(100,100,100,0.4);
box-shadow: 0 0 4px rgba(100,100,100,0.4);
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
p {
margin-bottom: 0.5em;
}
code {
/* Font list borrowed from StackOverflow.com */
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
color: #555;
background-color: #f3f3f3;
}
#command-list {
margin-top: 2em;
list-style: none outside none;
}
#command-list li {
padding: 0.5em;
line-height: 1.6em;
min-height: 1.6em;
vertical-align: middle;
}
#command-list code {
display: inline-block;
color: #000;
border: 1px solid #444;
background-color: #eee;
padding: 0.2em;
margin-left: 0.5em;
}
/* Button CSS shamelessly copied from http://www.webdesignerwall.com/demo/css-buttons.html because mine always looks a little off */
#command-list input {
font: 1.2em/100% "ff-tisa-web-pro-1", "ff-tisa-web-pro-2", Calibri, "Helvetica Neue", Trebuchet, Helvetica, sans-serif;
background-color: #0095cd; /* old browsers */
background-image: -moz-linear-gradient(top, #00adee, #0078a5); /* firefox */
background-image: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5)); /* Webkit 2010 */
background-image: -webkit-linear-gradient(top, #00adee, #0078a5); /* Webkit 2011+ */
background-image: -ms-linear-gradient(top, #00adee, #0078a5); /* IE10 */
background-image: -o-linear-gradient(top, #00adee, #0078a5); /* Opera 11.10+ */
background-image: linear-gradient(top, #00adee, #0078a5);
/* No IE7-9 filters for the background gradient because No ClearType == Fugly */
border: 1px solid #0076A3;
-moz-border-radius: 0.5em;
-webkit-border-radius: 0.5em;
-o-border-radius: 0.5em;
border-radius: 0.5em;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
color: #D9EEF7;
cursor: pointer;
display: inline-block;
font: 14px/100% Arial,Helvetica,sans-serif;
margin: 0 2px;
outline: medium none;
padding: 0.5em 1em 0.55em;
text-align: center;
/*text-decoration: none;*/
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
-moz-transition: 0.2s all ease-out;
-webkit-transition: 0.2s all ease-out;
-o-transition: 0.2s all ease-out;
transition: 0.2s all ease-out;
vertical-align: baseline;
/* ie7 hacks for display:inline-block: */
*display: inline;
zoom: 1;
}
#command-list input:hover {
background-color: #007ead;
background-image: -moz-linear-gradient(top, #0095cc, #00678e);
background-image: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
background-image: -webkit-linear-gradient(top, #0095cc, #00678e);
background-image: -ms-linear-gradient(top, #0095cc, #00678e);
background-image: -o-linear-gradient(top, #0095cc, #00678e);
background-image: linear-gradient(top, #0095cc, #00678e);
/* Tighter, darker drop shadow for a sense of immediacy and to build anticipation */
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
-o-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}
#command-list input:active {
color: #80bed6;
background-color: #0078a5;
background-image: -moz-linear-gradient(top, #0078a5, #00adee);
background-image: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
background-image: -webkit-linear-gradient(top, #0078a5, #00adee);
background-image: -ms-linear-gradient(top, #0078a5, #00adee);
background-image: -o-linear-gradient(top, #0078a5, #00adee);
background-image: linear-gradient(top, #0078a5, #00adee);
position: relative;
top: 1px;
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
-o-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}