forked from bitmakerlabs/learn_ruby_rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (98 loc) · 2.79 KB
/
style.css
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
/* Solarized Palette http://ethanschoonover.com/solarized */
/* Font Stacks http://www.artsiteframework.com/guide/fontstacks.php */
body {
background-color: white;
font-family: Optima, Candara, "Trebuchet MS", sans-serif;
margin: 0px;
font-size: 15px;
line-height: 19px; }
a, a:visited {
color: #268bd2; }
a:hover {
text-decoration: underline; }
a {
text-decoration: none; }
.content {
padding: 0 2em 0 18em;
min-height: 30em;
min-width: 20em;
max-width: 44em;
margin: 1em auto; }
.content h1, .content h2, .content h3 {
font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
margin-left: -1em; }
.content h1 {
text-shadow: #999 1px 1px 1px;
padding: .5em .25em;
margin-top: 1em; }
.content h2 {
margin-top: 1em;
border-bottom: #268bd2 1px dotted; }
.content pre {
overflow-x: auto; }
.header, .footer {
font-size: 80%;
padding: .25em;
background-color: #f2f2f2; }
.header {
border-bottom: 1px solid #002b36;
text-align: left; }
.header h1 {
color: #800000;
margin: 0 0 -8px 0;
padding: 0;
font: 30px/48px Optima, Candara, "Trebuchet MS", sans-serif;
letter-spacing: 0; }
.header h2 {
margin: 0 0 4px 13px;
padding: 0;
font: 10pt Optima, Candara, "Trebuchet MS", sans-serif;
color: #686868;
letter-spacing: 0;
font-variant: small-caps; }
.header a, .header a:visited {
color: #800000;
text-decoration: none; }
.header a:hover {
color: #37030B;
text-decoration: none; }
.footer {
border-top: 1px solid #002b36;
text-align: center; }
.nav {
float: left;
margin: 1em;
padding: 0 1em 1em;
width: 14em;
font-size: 75%; }
.nav {
background: -webkit-gradient(linear, left bottom, left top, color-stop(0.15, white), color-stop(0.85, #f2f2f2));
background: -moz-linear-gradient(center bottom, white 15%, #f2f2f2 85%);
-moz-border-radius: 10px;
border-radius: 10px;
border: 1px solid black; }
.rspec_file > .tests {
position: relative; }
.rspec_file > .tests a.raw_file {
float: right;
position: absolute;
right: 0;
padding: 2px 4px;
margin: 3px;
border: 1px solid #666;
background: #ddd; }
pre {
font-family: "Lucida Sans Typewriter Regular", "lucida console", monaco, "andale mono", "bitstream vera sans mono", consolas, "DejaVu Sans Mono", Courier, "Courier New", monospace;
background-color: #e9e9ff;
padding: .5em 1em;
border: 1px solid #93a1a1; }
code {
font-family: "Lucida Sans Typewriter Regular", "lucida console", monaco, "andale mono", "bitstream vera sans mono", consolas, "DejaVu Sans Mono", Courier, "Courier New", monospace;
background-color: #efefff; }
pre > code {
background-color: #e9e9ff; }
li > p:nth-child(0) {
margin: 0; }
ul li ul li {
margin-top: .1em;
margin-bottom: 1em; }