123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- @import "colours.less";
- @import url(http://fonts.googleapis.com/css?family=Roboto);
- * {
- box-sizing: border-box;
- }
- html,body,h1,h2, button {
- padding:0;
- margin:0;
- }
- html, button, input, textarea{
- font-family: 'Roboto', sans-serif;
- }
- body{
- width:100%;
- background:@background;
- }
- a {
- color:@accent;
- }
- nav {
- img{
- vertical-align: middle;
- margin-right: 5px;
- }
- dt, dd{
- &:hover, &.active{
- background: @control;
- cursor: pointer;
- cursor: hand;
- }
- }
- dt {
- padding: 10px 10px;
- }
- dd {
- margin: 0;
- padding: 10px 10px 10px 40px;
- }
- a{
- color: black;
- text-decoration: none;
- }
- }
- h2{
- margin-bottom:10px;
- a{
- color:inherit;
- }
- }
- h3{
- margin-bottom: 10px;
-
- :first-child{
- margin-top: 0px;
- }
- }
- hr{
- border: 1px solid @control;
- }
- table{
- border-collapse: collapse;
-
- input[type=text], textarea{
- width: 100%;
- }
- }
- th{
- text-align: left;
- }
- td, th{
- padding:0 10px 5px 0;
- vertical-align: top;
- }
- form{
- button, input[type=submit]{
- border:none;
- background:none;
-
- &:hover{
- background: @control;
- }
- }
- }
- button:hover{
- cursor: pointer;
- cursor: hand;
- }
- img{
- max-width: 100%;
- }
- p:first-child{
- margin-top: 0;
- }
- #menu{
- background:@background;
- width:280px;
- left:0;
- position:fixed;
- height:100%;
- box-shadow: -2px 0px 0px 0px @control inset;
- z-index: 400;
- overflow-x: hidden;
-
- .header{
- z-index: 401;
- }
- }
- #menu-button{
- display:none;
- }
- #nav-container{
- overflow: auto;
- width:100%;
- }
- #main{
- padding-left:280px;
- padding-top:64px;
-
- >*{
- padding-left:20px !important;
- }
- }
- #main-header{
- position: fixed;
- padding-left: 280px;
- left:0;
- right:0;
- z-index: 1;
- .header>*{
- padding-left: 20px !important;
- }
- }
- #content{
- padding:20px;
- margin-bottom:60px;
- }
- #buttons{
- position:fixed;
- bottom: 20px;
- right: 20px;
- left:280px;
- vertical-align: bottom;
- >table{
- width: 100%;
- tr>td{
- vertical-align: bottom;
- padding:0;
-
- &:last-child{
- text-align: right;
- }
-
- &:not(:first-child){
- margin-top:20px;
- }
- }
- }
-
- button{
- border-radius: 50%;
- display: inline-block;
- text-align: center;
- box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.25);
- vertical-align: middle;
- border:none;
- background:@accent;
- width:40px;
- height:40px;
- color: white;
- font-size: 24px;
- line-height: 24px;
- }
- }
- #cookiePopup{
- position:absolute;
- background:black;
- top:50%;
- left:50%;
- padding:20px;
- border-radius: 30px;
- width:230px;
- height:230px;
- margin-top:-115px;
- margin-left:-115px;
- color:white;
-
- > div{
- margin-top:40px;
- text-align: center;
- }
- }
- .header {
- height:64px;
- background:@primary;
- color:white;
- white-space:nowrap;
- padding:0 !important;
- overflow: hidden;
- box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.8);
-
- >*{
- line-height:64px;
- font-size:24px;
- font-weight:400;
- padding-left: 10px;
- white-space: nowrap;
- display: inline;
- vertical-align: middle;
- }
- >h2>span{
- display: inline-block;
- }
- >img{
- height:50%;
- }
- span{
- display: inline-block;
-
- &:not(:first-child):before{
- margin:2px 10px 0 10px;
- width:6px;
- float:left;
- height:62px;
- background: url("/images/chevron.png") no-repeat scroll right center / contain rgba(0, 0, 0, 0);
- content:"";
- }
- }
- }
- .circle{
- border-radius: 50%;
- display: inline-block;
- text-align: center;
- vertical-align: middle;
- }
- .go, .expand{
- display:none;
- float:right;
- }
- .backdrop{
- background: rgba(0,0,0,0.5);
- width: 100%;
- height:100%;
- position:fixed;
- top:0;
- left:0;
- z-index:100;
- display:none;
- }
- .errors{
- background: url(/images/error.svg) no-repeat scroll 10px 10px #424242;
- margin:-20px;
- margin-bottom: 20px;
- padding:10px;
- padding-left:40px;
- color:#fff;
-
- ul{
- margin: 0;
- list-style: square;
- }
- }
- .row{
- width:100%;
- clear:both;
- >.col {
- width:100%;
- float:left;
- }
- .col-lg-1>.col{
- width:100%;
- }
- .col-lg-2>.col{
- width:50%;
- }
- .col-lg-3>.col{
- width:33.3333%;
- }
- .col-lg-4>.col{
- width:25%;
- }
- .col-md-1>.col{
- width:100%;
- }
- .col-md-2>.col{
- width:50%;
- }
- .col-md-3>.col{
- width:33.3333%;
- }
- .col-md-4>.col{
- width:25%;
- }
- .col-sm-1>.col{
- width:100%;
- }
- .col-sm-2>.col{
- width:50%;
- }
- .col-sm-3>.col{
- width:33.3333%;
- }
- .col-sm-4>.col{
- width:25%;
- }
- }
|