]> Untitled Git - lemmy.git/blob - ui/assets/css/main.css
Spanish translations
[lemmy.git] / ui / assets / css / main.css
1 .navbar-toggler {
2   border: 0px;
3 }
4
5 .pointer {
6   cursor: pointer;
7 }
8
9 .no-click {
10   pointer-events:none;
11   opacity: 0.65;
12 }
13
14 .upvote:hover {
15  color: var(--info);
16 }
17
18 .upvote {
19   margin-bottom: -5px;
20 }
21
22 .downvote:hover {
23   color: var(--danger);
24 }
25
26 .downvote {
27   margin-top: -10px;
28 }
29
30 .md-div p:last-child {
31   margin-bottom: 0px;
32 }
33
34 .md-div img {
35   max-width: 100%;
36   height: auto;
37 }
38
39 .md-div h1,h2,h3,h4,h5 {
40   font-size:1.171875rem;
41 }
42
43 .comment-node {
44   margin-bottom: 10px;
45 }
46
47 .vote-bar {
48   margin-top: -6.5px;
49 }
50
51 .post-title {
52   line-height: 1.0;
53 }
54
55 .icon {
56   display: inline-flex;
57   width: 1em;
58   height: 1em;
59   stroke-width: 0;
60   stroke: currentColor;
61   fill: currentColor;
62   vertical-align: middle;
63   align-self: center;
64 }
65
66
67 .spin {
68   animation: spins 2s linear infinite;
69 }
70
71 @keyframes spins {
72   0% { transform: rotate(0deg); }
73   100% {  transform: rotate(359deg); }
74 }
75
76 .dropdown-menu {
77   z-index: 2000;
78 }
79
80 blockquote {
81   border-left: 3px solid #ccc;
82   margin: 0.5em 5px;
83   padding: 0.1em 5px;
84 }
85
86 .mouse-icon {
87   margin-top: -4px;
88 }
89
90 .new-comments {
91   max-height: 50vh;
92   overflow: hidden;
93 }
94
95 .new-comments:hover {
96   overflow-y: auto;
97 }
98
99 .thumbnail {
100   max-height: 62px;
101   max-width: 400px;
102 }
103
104 .no-s-hows {
105   position: absolute !important;
106   top: -9999px !important;
107   left: -9999px !important;
108 }
109
110 hr {
111   border-top: 1px solid var(--secondary);
112 }
113
114 .emoji {
115   height: 1.2em !important;
116 }