blob: 3920ef51b7371d1a0ffca343926384b6f3a2e0fa [file] [log] [blame]
Nils Diewald58141332015-04-07 16:18:45 +00001@charset "utf-8";
2@import "util";
3
4#sidebar {
5/*
6 box-shadow: 2px 2px 5px darken($dark-green, 15%);
7*/
8// box-shadow: $choose-box-shadow;
9 outline: none;
10 display: block;
11 background-color: $dark-green;
12 position: fixed;
13 z-index: 7100;
14 color: $nearly-white;
15 width: $logo-left-distance;
16 top: 0;
17 left: 0;
18 height: 100%;
19 padding-top: 80px;
20 transition: all .3s ease-in-out;
21
22 > * {
23 opacity: 1;
24 }
25 &::after {
26 display: block;
27 opacity: 0;
28 cursor: pointer;
29 position: absolute;
30 right: 0;
31 bottom: 0;
32 margin-right: -30px;
33 background-color: $dark-green;
34 content: '#';
35 font-size: 16pt;
36 width: 16pt;
37 height: 17pt;
38 padding: 6pt;
39 border-top-right-radius: $standard-border-radius;
40 }
41}
42
43#sidebar:not(:focus):not(.active) {
44 margin-left: -1 * ($logo-left-distance - 15px);
45// box-shadow: none;
46 &::after {
47 opacity: 1;
48 }
49 > * {
50 opacity: 0;
51 // TODO
52 transition: {
53 property: opacity;
54 duration: .3s;
55 }
56 }
57}
58
59/*
60#sidebar {
61 text-shadow: none;
62 height: 105%;
63 margin-top: -10px;
64 background-color: #496000;
65 left: 0;
66 top: 0;
67 &.active {
68 box-shadow: 2px 2px 5px darken($dark-green, 15%);
69 margin-left: 0px;
70 left: 0;
71 top: 0;
72 }
73 &:not(.active) > i.fa-bars {
74 opacity: 1;
75 cursor: pointer;
76 background-color: #496000;
77 position: fixed;
78 font-size: 16pt;
79 width: 16pt;
80 height: 17pt;
81 padding: 6pt;
82 bottom: 0;
83 left: 0;
84 border-top-right-radius: 5pt;
85 }
86 h2 {
87 font: {
88 size: 100%;
89 weight: bold;
90 }
91 text-align: center;
92 padding: 0;
93 margin: 0 0 5pt 0;
94 }
95 ul {
96 list-style-type: none;
97 margin: 0;
98 font-size: 10pt;
99 text-indent: 0;
100 padding: 0;
101 li {
102 padding: 4pt 10pt;
103 h3 {
104 font: {
105 weight: bold;
106 size: 100%;
107 }
108 padding: 0;
109 margin: 0;
110 }
111 &.active {
112 background-color: $light-green;
113// text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
114 text-shadow: none;
115 h3 {
116 margin-bottom: 2pt;
117 padding-bottom: 2pt;
118 border-bottom: 1px solid black;
119 }
120 }
121 }
122 }
123 dl.info {
124 font-size: 9pt;
125 padding: 0 10pt;
126 > dt {
127 font-weight: bold;
128 float: left;
129 }
130 > dd {
131 text-align: right;
132 }
133 }
134}
135*/