-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles_pods.css
More file actions
56 lines (53 loc) · 1.86 KB
/
styles_pods.css
File metadata and controls
56 lines (53 loc) · 1.86 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
body::before {
display: block;
content: '';
height: 20px;
}
.navbar-bg-custom { background-color: white; }
.showcase-bg-custom { background-color: #eff0f1; }
.bootstrap-color { color: #7f11f2; }
.text-custom { color: #1e1e1e; }
.text-custom:hover { color: #7a7a7a; cursor: pointer; }
.section-bg-custom { background-color: #eff0f1; }
.rounded-custom { border-radius: 20px; }
.card-bg-custom { background-color: #ffd31d; }
.footer-bg-custom { background-color: #eff0f1; }
.footer-color-custom { color: #989ca0; }
.rounded-top-custom { border-radius: 20px 20px 0 0; }
.rounded-bottom-custom { border-radius: 0 0 20px 20px; }
.fs-small { font-size: small; }
.description { text-transform: capitalize; }
.loader {
margin: auto;
border: 5px solid #efefef;
border-radius: 50%;
border-top: 5px solid #373737;
width: 50px;
height: 50px;
animation: spinner 2s linear infinite;
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.hover-pointer:hover {
cursor: pointer;
}
.external-link{
position: fixed;
top: 0%;
right: 0%;
}
.fs-7 { font-size: 0.9em; }
.fs-8 { font-size: 0.8em; }
.form-control:focus { outline:none; box-shadow: none; border: 1px solid #ced4da; }
.scrollbar-hidden::-webkit-scrollbar{ display: none; }
.scrollbar-hidden { -ms-overflow-style: none; scrollbar-width: none; }
.hide-glow:focus { outline:none; box-shadow: none; border: 1px solid #ced4da; }
.unselectable { user-drag: none; user-select: none; -moz-user-select: none; -webkit-user-drag: none; -webkit-user-select: none; -ms-user-select: none; }
.text-justify { text-align: justify; }
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.dark-mode-bg-1 { background-color: #191919; }
.dark-mode-bg-2 { background-color: #111111; }
.dark-mode-color-1 { color: #dcdcdc; }
.dark-mode-color-2 { color: #dcdcdc; }