summaryrefslogtreecommitdiffstats
path: root/ui/src/css/main.css
blob: 3b74357d56013d4d899ab000664b4b8a23b84c7b (plain)
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
.pointer {
  cursor: pointer;
}

.no-click {
  pointer-events:none;
  opacity: 0.65;
}

.upvote:hover {
 color: var(--info);
}

.downvote:hover {
  color: var(--danger);
}

.form-control, .form-control:focus {
  background-color: var(--secondary);
  color: #fff;
}

.form-control:disabled {
  background-color: var(--secondary);
  opacity: .5;
}

.custom-select {
  color: #fff;
  background-color: var(--secondary);
}

.mark {
  background-color: #322a00;
}

.md-div p {
  margin-bottom: 0px;
}

.md-div img {
  max-width: 100%;
  height: auto;
}

.listing {
  min-height: 61px;
}

.icon {
  display: inline-flex;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
  align-self: center;
}


.spin {
  animation: spins 2s linear infinite;
}

@keyframes spins {
  0% { transform: rotate(0deg); }
  100% {  transform: rotate(359deg); }
}

.dropdown-menu {
  z-index: 2000;
}

.navbar-bg {
  background-color: #222;
}

blockquote {
  border-left: 3px solid #ccc;
  margin: 0.5em 5px;
  padding: 0.1em 5px;
}

.badge-notify{
   /* background:red; */
   position:relative;
   top: -20px;
   left: -35px;
}