comparison sat_templates/templates/default/static/chat_select.css @ 164:e9f0a4215e46

multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author Goffi <goffi@goffi.org>
date Mon, 10 Sep 2018 08:53:33 +0200
parents sat_templates/default/static/chat_select.css@33c7ce833d3f
children
comparison
equal deleted inserted replaced
163:33f67228686a 164:e9f0a4215e46
1 #main_area {
2 overflow: auto;
3 }
4
5 .rooms_list {
6 list-style: none;
7 display: grid;
8 text-align: center;
9 padding: 0;
10 }
11
12 .rooms_list a {
13 text-decoration: none;
14 color: inherit;
15 font-variant: small-caps;
16 font-weight: bold;
17 }
18
19 .rooms_list li {
20 margin-top: 1em;
21 }
22
23 .rooms_list li:first-child {
24 margin-top: 0;
25 }
26
27 .rooms_list li:hover {
28 background-color: #efefef;
29 }
30
31 @media (min-width: 600px) {
32 .rooms_list {
33 grid-template-columns: 1fr 1fr 1fr;
34 }
35
36 .rooms_list li {
37 margin-top: 0;
38 }
39 }