koder aka kdanilov | 108ac36 | 2017-01-19 20:17:16 +0200 | [diff] [blame] | 1 | @import url('//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css'); |
| 2 | |
| 3 | html { |
| 4 | font-size: 14px; |
| 5 | min-height: 100%; |
| 6 | position: relative; |
| 7 | } |
| 8 | |
| 9 | body { |
| 10 | background: #ffffff; |
| 11 | font-family: 'Open Sans', sans-serif; |
| 12 | font-size: 14px; |
| 13 | overflow-y: scroll; |
| 14 | height: 100%; |
| 15 | min-width: 800px; |
| 16 | } |
| 17 | |
| 18 | a:focus { |
| 19 | outline: none; |
| 20 | } |
| 21 | |
| 22 | h1, h2, h3, h4, h5 { |
| 23 | font-weight: 100; |
| 24 | } |
| 25 | |
| 26 | .navigation { |
| 27 | width: 200px; |
| 28 | display: block; |
| 29 | background-color: #5E6D70; |
| 30 | position: absolute; |
| 31 | height: 100%; |
| 32 | top: 0px; |
| 33 | left: 0px; |
| 34 | bottom: 0; |
| 35 | right: 0; |
| 36 | z-index: 99; |
| 37 | } |
| 38 | |
| 39 | .container-fluid { |
| 40 | padding-left: 200px; |
| 41 | } |
| 42 | |
| 43 | .row { |
| 44 | margin: 0; |
| 45 | padding: 0; |
| 46 | position: relative; |
| 47 | } |
| 48 | |
| 49 | .sidebar { |
| 50 | clear: both; |
| 51 | position: fixed; |
| 52 | } |
| 53 | |
| 54 | .panel { |
| 55 | background-color: #5E6D70; |
| 56 | border: 1px solid transparent; |
| 57 | border-radius: 0; |
| 58 | box-shadow: 0 0 0 rgba(0, 0, 0, 0.05); |
| 59 | margin-bottom: 20px; |
| 60 | } |
| 61 | |
| 62 | .list-group { |
| 63 | margin-top: 20px; |
| 64 | } |
| 65 | |
| 66 | .nav-group { |
| 67 | display: block; |
| 68 | padding: 10px 15px; |
| 69 | position: relative; |
| 70 | background-color: #424E4F; |
| 71 | text-transform: uppercase; |
| 72 | font-weight: 500; |
| 73 | color: #ffffff; |
| 74 | margin: auto; |
| 75 | max-width: 300px; |
| 76 | text-decoration: none; |
| 77 | } |
| 78 | .nav-group:hover, .nav-group:focus { |
| 79 | background-color: #424E4F; |
| 80 | color: #ffffff; |
| 81 | text-decoration: none; |
| 82 | border: none; |
| 83 | } |
| 84 | |
| 85 | .nav-group-item { |
| 86 | display: block; |
| 87 | color: #ffffff; |
| 88 | padding: 10px 15px; |
| 89 | position: relative; |
| 90 | text-decoration: none; |
| 91 | font-size: 13px; |
| 92 | padding-left: 20px; |
| 93 | font-weight: 300; |
| 94 | } |
| 95 | |
| 96 | .nav-group-item:hover { |
| 97 | color: #b4d0d6; |
| 98 | text-decoration: none; |
| 99 | } |
| 100 | |
| 101 | |
| 102 | #content1 { |
| 103 | display: none; |
| 104 | clear: both; |
| 105 | } |
| 106 | |
| 107 | #content1:target { |
| 108 | display: block; |
| 109 | } |
| 110 | |
| 111 | #content2 { |
| 112 | display: none; |
| 113 | clear: both; |
| 114 | } |
| 115 | |
| 116 | #content2:target { |
| 117 | display: block; |
| 118 | } |