desktop.css (547B)
1 /* Only on big screens (desktop/tablet) */
2
3 @media screen and (min-width: 641px) {
4
5 /* makes the toolbar come up on mouse hover */
6 .entry:not(.expanded) .entry-toolbar {
7 display: block;
8 padding: 0px;
9 background: inherit;
10 border: 0;
11 margin-top: -2px;
12 opacity: 0.0;
13 }
14
15 /* On hover, show the toolbar */
16 .entry:not(.expanded):hover .entry-toolbar {
17 opacity: 1.0;
18 }
19
20 /* Always show content in a single column */
21 .entry-content {
22 column-count: 1;
23 }
24
25 }
26