generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
styles.css
100 lines (81 loc) · 1.6 KB
/
styles.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
.copy-req {
padding: var(--size-2-2);
position: absolute;
top: 2px;
right: 34px;
display: flex;
cursor: var(--cursor);
opacity: 0;
background-color: transparent !important;
box-shadow: none !important;
}
.block-language-req:hover .copy-req {
opacity: 1;
background-color: var(--background-modifier-hover) !important;
}
.todo-li {
list-style-type: none;
padding: 0 !important;
margin: 0 !important;
}
/* Tables CSS */
.table-container {
margin-right: 30px;
}
.cocontainer{
display: flex;
}
.full-width {
width: 100% !important;
margin-right: 0px !important;
}
.api-table {
border-collapse: collapse;
}
.api-table a {
text-decoration: none;
}
.api-table th, .api-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
.api-table th {
background-color: #f2f2f2;
color: black;
}
/* I want to display the line over the entire row */
.api-table tr:hover :not(th) {
background-color: #F3A0A0;
color: black;
cursor: pointer;
text-decoration: line-through;
}
.api-table tr:hover a {
color: black;
}
.table-title {
text-align: center;
font-weight: bold;
font-size: 18px;
}
.btn-add-apir, .btn-clear-apir {
width: 53%;
background-color: #4CAF50 !important;
color: white !important;
cursor: pointer;
}
.btn-add-apir {
background-color: #4CAF50 !important;
}
.btn-clear-apir {
background-color: #f44336 !important;
}
.summary-text {
font-size: 18px;
font-weight: bold;
margin-top: 10px;
color: #4CAF50;
cursor: pointer;
list-style: none;
}