-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 1.14 KB
/
style.css
File metadata and controls
57 lines (50 loc) · 1.14 KB
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
/* Style the button that is used to open and close the collapsible content */
.collapsible {
/* background-color: #eee; */
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
background-color: #ccc;
}
/* Style the collapsible content. Note: hidden by default */
.content {
padding: 0 16px;
display: none;
overflow: hidden;
/* background-color: #f1f1f1; */
}
.collapsible:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: #777;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.blackinXRPink{
color: rgb(215, 165, 214);
}
.createAccessGreen{
color: rgb(148, 200, 171);
}
table, th, td {
/* border: 1px solid black; */
border-collapse: collapse;
}
th, td {
padding: 15px;
}
/* Set the table width to 100% */
table {
width: 100%;
}