forked from cupakromer/rspec-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
53 lines (46 loc) · 862 Bytes
/
site.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
pre {
margin: 6px 0;
background: rgba(250, 250, 250, 0.25);
padding: 6px;
border: thin solid #eee;
}
header {
background-color: #88BE71;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Candal', sans-serif;
}
a {
color: #3F7C25;
text-decoration: none;
line-height: inherit;
}
a:hover, a:focus {
color: #708F63;
}
a img {
border: none;
}
button, .button {
background-color: #3F7C25;
border-color: #88BE71;
}
button:hover, button:focus, .button:hover, .button:focus {
background-color: rgba(63, 124, 37, 0.50);
}
.side-nav li a:not(.button) {
color: #3F7C25;
}
.side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
color: #708F63;
}
.panel {
border: none;
background: #88BE71;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p {
color: black;
}
.main-content {
padding-top: 5px;
}