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