forked from donhauser/jmic-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.css
77 lines (68 loc) · 1.08 KB
/
readme.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
body {
font-family: arial, sans-serif;
background-color: #aaa;
}
body>div {
background-color: #fff;
width:60%;
margin: 10px auto;
min-width:800px;
padding:100px 100px 40px;
color:#222;
border:1px solid #aaa;
position: relative;
box-shadow: 0px 0px 5px 1px #888;
}
a {
color:#46f;
text-decoration:none;
transition:0.3s;
}
a:hover {
color:#238;
}
body p {
float:none;
margin-left:20px;
}
h1 {
margin-top:0;
}
body h3 {
margin:0 20px;
color: #222;
}
body .desc {
position:relative;
display:block;
font-style: italic;
color: #888;
margin:0 20px;
padding:3px 40px 0;
top:0px;
}
body code:before {
content: ">>";
color:#46f;
margin-right: 10px;
}
body code {
background-color:#eee;
padding:3px 5px;
border-radius:3px;
border:1px solid #aaa;
display:inline-block;
min-width: 760px;
margin:4px 0;
color: #444;
}
.version {
font-style:italic;
color:#888;
}
author {
float:right;
text-align:right;
color:#888;
margin:0 20px 10px 0;
}