Akron | ca9bd98 | 2016-12-06 16:59:57 +0100 | [diff] [blame^] | 1 | /** #C94E4E **/ |
| 2 | $color : #A05684; |
| 3 | |
| 4 | $red : #F22424; |
| 5 | $accent : darken($color,10); |
| 6 | $first_header : darken($color, 16); |
| 7 | |
| 8 | $header_height : 58px; |
| 9 | $btn_radius : 4px; |
| 10 | $radius : 15px; |
| 11 | $sidebar:210px; |
| 12 | |
| 13 | |
| 14 | body { |
| 15 | overflow-x: hidden; |
| 16 | background-color: $color; |
| 17 | } |
| 18 | |
| 19 | .label-control { |
| 20 | padding-top: 5pt; |
| 21 | } |
| 22 | |
| 23 | .form-control { |
| 24 | width: 260pt; |
| 25 | } |
| 26 | |
| 27 | .btn { |
| 28 | margin: 10pt 0pt; |
| 29 | } |
| 30 | |
| 31 | #heading { |
| 32 | padding: 5pt 20pt; |
| 33 | width:100%; |
| 34 | color: white; |
| 35 | height: 80pt; |
| 36 | |
| 37 | img { |
| 38 | width: 260px; |
| 39 | height: 65px; |
| 40 | margin: 10pt 0pt 10pt 10pt; |
| 41 | float:left; |
| 42 | } |
| 43 | |
| 44 | #loginSpan { |
| 45 | float:right; |
| 46 | |
| 47 | color: white; |
| 48 | |
| 49 | } |
| 50 | #loginSpan a { |
| 51 | font-weight: bold; |
| 52 | color: white; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | |
| 57 | footer { |
| 58 | float:right; |
| 59 | margin: 20pt; |
| 60 | |
| 61 | .footer { |
| 62 | margin: 10pt; |
| 63 | color: white; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | .warning { |
| 68 | color: $red; |
| 69 | font-size: 20px; |
| 70 | font-weight:bold; |
| 71 | padding-left: 10pt; |
| 72 | } |
| 73 | |
| 74 | a { |
| 75 | color: $accent; |
| 76 | } |
| 77 | |
| 78 | .i-layout { |
| 79 | border-radius: $radius; |
| 80 | background: #E9D5ED; |
| 81 | border: 3px solid $color; |
| 82 | } |
| 83 | |
| 84 | .btn-default, .btn-primary { |
| 85 | width: 100pt; |
| 86 | } |
| 87 | |
| 88 | .btn-sm { |
| 89 | width: 70pt; |
| 90 | } |
| 91 | |
| 92 | #wrapper { |
| 93 | padding-left: 0px; |
| 94 | -webkit-transition: all 0.5s ease; |
| 95 | -moz-transition: all 0.5s ease; |
| 96 | -o-transition: all 0.5s ease; |
| 97 | transition: all 0.5s ease; |
| 98 | } |
| 99 | |
| 100 | #wrapper.toggled { |
| 101 | padding-left: $sidebar; |
| 102 | } |
| 103 | |
| 104 | .content { |
| 105 | background-color: white; |
| 106 | border-radius: $radius; |
| 107 | padding: 5pt 15pt 15pt 15pt; |
| 108 | |
| 109 | h1,h2,h3,h4 { |
| 110 | color: $first_header; |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | .alert { |
| 115 | border-radius: $radius; |
| 116 | } |
| 117 | |
| 118 | #togglewrap { |
| 119 | border-style: solid; |
| 120 | border-width: 5px; |
| 121 | } |
| 122 | |
| 123 | #sidebar-wrapper { |
| 124 | z-index: 1000; |
| 125 | position: absolute; |
| 126 | left: 250px; |
| 127 | width: 0; |
| 128 | height: 100%; |
| 129 | margin-left: -250px; |
| 130 | overflow-y: auto; |
| 131 | background: $color; |
| 132 | -webkit-transition: all 0.5s ease; |
| 133 | -moz-transition: all 0.5s ease; |
| 134 | -o-transition: all 0.5s ease; |
| 135 | transition: all 0.5s ease; |
| 136 | } |
| 137 | |
| 138 | #wrapper.toggled #sidebar-wrapper { |
| 139 | width: $sidebar; |
| 140 | } |
| 141 | |
| 142 | #page-content-wrapper { |
| 143 | width: 100%; |
| 144 | } |
| 145 | |
| 146 | #wrapper:not(.toggled) #page-content-wrapper { |
| 147 | padding:0pt 10pt; |
| 148 | } |
| 149 | |
| 150 | #wrapper.toggled #page-content-wrapper { |
| 151 | position: relative; |
| 152 | width: 100%; |
| 153 | padding-right:10pt; |
| 154 | } |
| 155 | |
| 156 | .sidebar-nav { |
| 157 | top: 0; |
| 158 | width: $sidebar; |
| 159 | margin: 0; |
| 160 | padding: 0; |
| 161 | list-style: none; |
| 162 | a { |
| 163 | border-radius: $radius; |
| 164 | color: white; |
| 165 | font-weigth: bold; |
| 166 | } |
| 167 | a:hover { |
| 168 | color: $accent; |
| 169 | font-weigth: bold; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | @media (max-width:1000px) { |
| 174 | #heading h2 { |
| 175 | font-size: 19pt; |
| 176 | } |
| 177 | |
| 178 | .content { |
| 179 | margin: 7pt 5pt; |
| 180 | } |
| 181 | |
| 182 | #loginSpan { |
| 183 | display:none; |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | @media (max-width:767px) { |
| 188 | #heading { |
| 189 | display: none; |
| 190 | } |
| 191 | #wrapper { |
| 192 | padding-left: 250px; |
| 193 | } |
| 194 | |
| 195 | #wrapper.toggled { |
| 196 | padding-left: 0; |
| 197 | } |
| 198 | |
| 199 | #sidebar-wrapper { |
| 200 | width: 250px; |
| 201 | } |
| 202 | |
| 203 | #wrapper.toggled #sidebar-wrapper { |
| 204 | width: 0; |
| 205 | } |
| 206 | |
| 207 | #page-content-wrapper { |
| 208 | padding: 20px; |
| 209 | } |
| 210 | |
| 211 | #wrapper.toggled #page-content-wrapper { |
| 212 | position: relative; |
| 213 | margin-right: 0; |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | |