summaryrefslogtreecommitdiffstats
path: root/ui/src/css/main.css
blob: e611f8d468bf969555b82978a62b90d2305ec5f0 (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
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
body, .text-white, .navbar-brand, .badge-light, .btn-secondary {
  color: #dedede !important;
}

.pointer {
  cursor: pointer;
}

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

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

.upvote {
  margin-bottom: -5px;
}

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

.downvote {
  margin-top: -10px;
}

.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: #333;
}

.mark-two {
  background-color: #444 !important;
}

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

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

.listing, .comment {
  min-height: 61px;
  margin-bottom: 10px;
}

.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;
}

.mouse-icon {
  margin-top: -4px;
}

.new-comments {
  max-height: 100vh;
  overflow: hidden;
}

.new-comments:hover {
  overflow-y: auto;
}

.thumbnail {
  max-height: 50px;
  max-width: 50px;
}

.no-s-hows {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}