-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemini.css
87 lines (87 loc) · 1.5 KB
/
Gemini.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
.gem .box {
display:block;
padding:9.5px;
margin:20px 0 10px;
font-size:16px;
line-height:1.5;
color:#333;
word-break:break-all;
word-wrap:break-word;
background-color:#f5f5f5;
border:1px solid #ccc;
border-radius:4px
}
.gem .spacer { padding-bottom: 80px }
.gem .box a {
text-decoration:none;
color:inherit;
}
.gem .readmore {
padding-left:10px;
}
.gem .readmore a {
cursor:pointer;
}
.gem .gemini-list {
/* background:#e5e1e0; */
padding:10px 0;
border-top:1px solid #7f7f7f;
border-bottom:1px solid #7f7f7f;
margin-bottom:20px;
}
.gem .gemini-item {
border-bottom:1px solid #7f7f7f;
padding-bottom:15px;
margin-bottom:15px;
}
.gem .gemini-expander {
display: none;
}
.gem .gemini-mono {
font-size:12px;
font-weight:bold;
}
.gem .gemini-xml {
font-family: monospace;
font-size:12px;
color:red;
}
.gem pre {
font-family: monospace;
font-size:12px;
color:red;
overflow: auto;
word-wrap: normal;
white-space: pre;
}
.gem table {
border: 1px solid #ddd;
border-collapse: collapse;
margin:15px 0;
}
.gem table table {
margin:0;
}
.gem th,
.gem td {
border: 1px solid #ddd;
padding: 3px;
text-align: left;
vertical-align: top;
font-size:12px;
}
.gem .thOther {
background-color: #7f7f7f;
color: white;
}
.gem .tbold {
font-size:12px;
font-weight:bold;
background-color: #7f7f7f;
color: white;
}
.gem .tgrey {
font-size:12px;
background-color: #cdcdcd;
color: grey;
}