-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpoker-data-css-style.css
176 lines (144 loc) · 3.11 KB
/
poker-data-css-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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
h1 {
color: white;
background-color: #512237;
padding: 0.5em;
margin-bottom: 0.25em;
/* opacity: 0.9; */
}
h2 {
color: white;
background-color: #005c99;
padding: 0.5em;
margin-bottom: 0.25em;
}
h3 {
color: white;
background-color: #00004d;
padding: 0.5em;
margin-bottom: 0.25em;
}
h4 {
font-family: 'Arial';
font-size: 3.0em;
color: #eaefef;
background-color: #013f5e;
padding: 0.5em;
margin-bottom: 0.25em;
}
div.cell { /* Tunes the space between cells */
margin-top: 0.5em;
margin-bottom: 0.5em;
}
div.text_cell_render h1 { /* Main titles bigger, centered */
font-family: 'Arial';
/* line-height: 1.4em; */
text-align: left;
margin-bottom: 0.25em;
}
div.text_cell_render h2 { /* Parts names nearer from text */
font-family: 'Arial';
margin-bottom: 0.25em;
}
div.text_cell_render h3 { /* Main titles */
font-family: 'Arial';
/* font-size: 2.2em; */
/* line-height: 1.4em; */
text-align: left;
margin-bottom: 0.25em;
}
div.text_cell_render { /* Customize text cells */
font-family: 'Times New Roman';
/* font-family: 'Tahoma'; */
font-size: 1.25em;
/* font-size: 18px; */
line-height: 1.32em;
/* line-height: 24px; */
padding-left: 0em;
padding-right: 2em;
}
div.output_area pre {
/* font-family: Consolas, monospace; */
/* font-size: small; */
}
p {
margin: 0.25em;
/* margin-bottom: 0.25em; */
}
ol {
margin-top: 8px;
margin-bottom: 8px;
}
ol li {
margin-bottom: 8px;
}
ul {
margin-top: 8px;
margin-bottom: 8px;
}
ul li {
margin-bottom: 8px ;
}
/* Make the notebook cells take almost all available width */
.container {
/* width: 90% !important; */
/* margin-left: 4%; */
/* margin-right: auto; */
}
/* Prevent the edit cell highlight box from getting clipped;
* important so that it also works when cell is in edit mode*/
div.cell.selected {
border-left-width: 1px !important;
}
/************** body style *************/
body {
margin: 0;
font-family: Helvetica;
/* background-color:#b0c4de; */
}
/************** table style *************/
table, th, td {
border: 1px solid black;
padding-left: 0.2em;
padding-right: 0.2em;
padding-top 0.2em;
padding-bottom 0.2em;
/* font-size: 1.2em; */
/* padding: 5px; */
text-align: left;
}
table td {
border: 1px solid #ccf;
background-color: #f4f4ff;
}
table tr {
border: 1px solid black;
padding: 30px;
}
/************** DataFrame table style *************/
table.dataframe {
border-collapse: collapse;
border: none;
}
table.dataframe tr {
border: none;
}
table.dataframe td, table.dataframe th {
margin: 0;
border: 1px solid tan;
padding-left: 0.25em;
padding-right: 0.25em;
font-size: 0.9em;
}
table.dataframe th:not(:empty) {
background-color: #fec;
text-align: left;
font-weight: normal;
}
table.dataframe tr:nth-child(2) th:empty {
border-left: none;
border-right: 1px dashed #888;
}
table.dataframe td {
border: 2px solid #ccf;
background-color: #f4f4ff;
}