-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathinfo.css
More file actions
180 lines (159 loc) · 3.41 KB
/
Copy pathinfo.css
File metadata and controls
180 lines (159 loc) · 3.41 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
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
175
176
177
178
179
180
html,
body {
width: 100%;
height: 100%;
min-height: 100%;
font-family: Arial, Helvetica, sans-serif;
}
footer{
position: relative;
bottom: 0;
width: 100%;
}
.header {
margin-top: 60px;
}
.bg-dark {
background-color: #343a40 !important;
}
.bg-info {
background-color: #17a2b8!important;
}
.page-container{
height:100vh;
display: flex;
flex-direction:column;
justify-content: space-between;
}
.sort-btn
{
cursor: pointer;
}
.has-search .form-control {
padding-left: 2.375rem;
}
.has-search .form-control-feedback {
position: absolute;
z-index: 2;
display: block;
width: 2.375rem;
height: 2.375rem;
line-height: 2.375rem;
text-align: center;
pointer-events: none;
color: #aaa;
}
#detailtable{
margin:auto;
text-align: left;
}
#detailtable th{
padding: 6px;
padding-left: 15px;
padding-right: 15px;
text-align: right;
border-right-style: double;
}
#detailtable td{
padding: 6px;
padding-left: 15px;
padding-left: 15px;
text-align: left;
}
#annotationtable, #heatmaptable{
margin: auto;
text-align: left;
border-collapse: collapse;
width: 100%;
border-bottom-style: solid;
border-bottom-color: #0c5460;
}
#annotationtable th,#heatmaptable th{
border: 1px solid #0c5460;
padding: 8px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: #0c5460;
padding-left: 12px;
color: white;
}
#annotationtable td, #heatmaptable td{
/* border: 1px solid #0c5460; */
padding: 8px;
padding-left: 12px;
font-style: italic;
}
#annotationtable tr:nth-child(even), #heatmaptable tr:nth-child(even){
background: #b9e2e8;
}
#annotationtable tr:hover, #heatmaptable tr:hover{
background: #9cc7ce;
}
.p{
margin-bottom: 0;
}
/* Dark Mode Option: */
.darkmode-btn{
background-color: transparent;
box-shadow: inset 0 0 0 2px rgba(144, 144, 144, 0.25);
color: #4d5968 !important;
letter-spacing: 0.05em;
text-transform: uppercase;
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
border-radius: 5px;
border: 0;
cursor: pointer;
display: inline-block;
font-size: 0.8em;
font-weight: 700;
line-height: 3.35em;
padding: 0 2em;
text-align: center;
text-decoration: none;
white-space: nowrap;
}
/* Dark mode hover effect */
.dark-mode .darkmode-btn:hover {
background-color: transparent !important; /* No background in dark mode hover */
color: #ccc; /* Optional: Light gray text on hover in dark mode */
border-color: #ccc; /* Optional: Adjust border color in dark mode */
transform: scale(1.05); /* Keep the hover scaling effect */
box-shadow: none !important; /* Ensure no shadow in dark mode */
}
.dark-mode .nav-item.active.link{
color:black !important;
}
/* Dark Mode Styles */
.dark-mode {
background-color: black;
color: white;
}
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode p,
.dark-mode span{
color: white !important; /* Force text to be white */
}
@media screen and (max-width: 736px) {
.dark-mode .posts .post .image {
width: 30%;
min-width: 6em;
}
.dark-mode .posts .post .content {
width: 70%;
}
}
@media screen and (max-width: 480px) {
.dark-mode .posts .post .image {
margin-right: 1.5em;
}
}