summaryrefslogtreecommitdiffstats
path: root/ui/assets/css/main.css
blob: dcc55f194f27dde57aee9b6480502242791aca44 (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
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
.navbar-toggler {
  border: 0px;
}

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

.md-div p {
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

.md-div h1,
.md-div h2,
.md-div h3,
.md-div h4,
.md-div h5 {
  font-size:1.171875rem;
}

.md-div table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid var(--dark);
}

.md-div table th,
.md-div table td {
  padding: 0.3rem;
  vertical-align: top;
  border-top: 1px solid var(--dark);
  border: 1px solid var(--dark);
}

.md-div table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--dark);
}

.md-div table tbody + tbody {
  border-top: 2px solid var(--dark);
}

.comment-node {
  margin-bottom: 10px;
}

.vote-bar {
  margin-top: -6.5px;
}

.post-title {
  line-height: 1.0;
}

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

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

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

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

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

.thumbnail {
  max-height: 62px;
  max-width: 400px;
}

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

hr {
  border-top: 1px solid var(--secondary);
}

.emoji {
  height: 1.2em !important;
}

.text-wrap-truncate {
  overflow: hidden;
  text-overflow: ellipsis
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fl-1 {
  flex: 1;
}