-
Notifications
You must be signed in to change notification settings - Fork 310
/
visual-git-guide.css
92 lines (82 loc) · 1.36 KB
/
visual-git-guide.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
html{
background: #FAFAFA;
}
body{
font-family: sans-serif;
margin: 0 auto;
width: 70%;
padding: 20px 0px;
background: white;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
color: rgba(0,0,0,0.7);
}
@media handheld, screen and (max-width: 995px){
body{
width: 100%;
}
}
h1, h2, h3{
color: rgba(0,0,0,0.8);
margin-left: 20px;
margin-right: 20px;
}
h1{font-size: 4rem;}
h2{font-size: 2rem;}
h3{font-size: 1.2rem;}
a, a:visited{
text-decoration: none;
color: #f05033;
font-size: 1rem;
}
p, div, ol, ul, pre, strong{
margin-left: 20px;
margin-right: 20px;
}
hr{
color: #212121;
height: 1px;
background: #BDBDBD;
}
.center {
text-align: center;
}
#link-to-png, #link-to-svg {
font-style: italic; display: none;
}
ol ol {
list-style-type: lower-alpha;
}
#language-box {
position: absolute;
top: 2px;
font-family: sans-serif;
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
#language-box ul {
display: inline;
list-style: none;
margin: 0 0 0 -0.5em;
padding: 0.5em;
width: 100%;
}
#language-box ul li {
padding: .2ex 0;
display: inline;
}
#language-box ul li.selected {
display: none;
}
@media print {
#language-box {
display: none;
}
body{
width: 100%;
}
}
pre {
margin-left: 2em;
}