]> luflow.net public git repositories - flow-web.git/blob - static/css/sidebar.css
Initial commit.
[flow-web.git] / static / css / sidebar.css
1 /* luflow.net web site */
2 /* Public domain 2025. All rights waived */
3
4 .side-bar {
5 box-sizing: border-box;
6 color: #555753;
7 font-size: 0.9em;
8 padding: 30px 0px;
9 }
10
11 .bar-title {
12 color: #525252;
13 font-size: 14px;
14 }
15
16 .bar-list {
17 list-style-type: none;
18 padding: 0px;
19 }
20
21 .bar-item {
22 display: inline-block;
23 margin: 10px 5px;
24 vertical-align: top;
25 }
26
27 .bar-link:link,
28 .bar-link:visited {
29 border-color: silver;
30 border-radius: 4px;
31 border-style: solid;
32 border-width: thin;
33 color: #525252;
34 padding: 5px 10px;
35 text-decoration: none;
36 }
37
38 .bar-link:active,
39 .bar-link:focus,
40 .bar-link:hover {
41 background-color: #ffcc00;
42 border-color: #d4aa00;
43 }
44
45 .feed-link {
46 background-image: url('/static/img/feed-bg-white.png');
47 background-position: bottom left;
48 background-repeat: no-repeat;
49 }
50
51 @media screen and (min-width: 1280px) {
52 .side-bar {
53 border-color: #999;
54 border-radius: 4px;
55 border-style: solid;
56 border-width: thin;
57 display: inline-block;
58 padding: 0px;
59 text-align: left;
60 vertical-align: top;
61 width: 250px;
62 }
63
64 .bar-title {
65 background-color: #f5f5f5;
66 font-weight: normal;
67 margin: 0px;
68 padding: 8px;
69 }
70
71 .bar-title-top {
72 border-radius: 4px 4px 0px 0px;
73 }
74
75 .bar-list {
76 margin: 0px;
77 }
78
79 .bar-item {
80 display: block;
81 margin: 0px;
82 }
83
84 .bar-link:link,
85 .bar-link:visited {
86 border-color: #f5f5f5;
87 border-radius: 0px;
88 border-style: solid none none none;
89 display: block;
90 margin: 0px;
91 padding: 8px 8px 8px 16px;
92 text-decoration: none;
93 }
94 }