|
@@ -1,369 +1,301 @@
|
|
@import url(http://fonts.googleapis.com/css?family=Roboto);
|
|
@import url(http://fonts.googleapis.com/css?family=Roboto);
|
|
-
|
|
|
|
* {
|
|
* {
|
|
- box-sizing: border-box;
|
|
|
|
|
|
+ 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: #fafafa;
|
|
}
|
|
}
|
|
-
|
|
|
|
-html,body,h1,h2, button {
|
|
|
|
- padding:0;
|
|
|
|
- margin:0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-html, button, input, textarea{
|
|
|
|
- font-family: 'Roboto', sans-serif;
|
|
|
|
- /*font-size:16px;*/
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-body{
|
|
|
|
- width:100%;
|
|
|
|
- background:#fafafa;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
a {
|
|
a {
|
|
- color:#f44336;
|
|
|
|
|
|
+ color: #00e676;
|
|
}
|
|
}
|
|
-
|
|
|
|
-nav img{
|
|
|
|
- vertical-align: middle;
|
|
|
|
- margin-right: 5px;
|
|
|
|
|
|
+nav img {
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+ margin-right: 5px;
|
|
}
|
|
}
|
|
-
|
|
|
|
-nav dt:hover, nav dd:hover, nav dt.active, nav dd.active{
|
|
|
|
- background: #EEE;
|
|
|
|
- cursor: pointer;
|
|
|
|
- cursor: hand;
|
|
|
|
|
|
+nav dt:hover,
|
|
|
|
+nav dd:hover,
|
|
|
|
+nav dt.active,
|
|
|
|
+nav dd.active {
|
|
|
|
+ background: #eeeeee;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ cursor: hand;
|
|
}
|
|
}
|
|
-
|
|
|
|
nav dt {
|
|
nav dt {
|
|
- padding: 10px 10px;
|
|
|
|
|
|
+ padding: 10px 10px;
|
|
}
|
|
}
|
|
-
|
|
|
|
nav dd {
|
|
nav dd {
|
|
- margin: 0;
|
|
|
|
- padding: 10px 10px 10px 40px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-nav a{
|
|
|
|
- color: black;
|
|
|
|
- text-decoration: none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-h2{
|
|
|
|
- margin-bottom:10px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-h2 a{
|
|
|
|
- color:inherit;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-h3:first-child{
|
|
|
|
- margin-top: 0px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-h3{
|
|
|
|
- margin-bottom: 10px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-hr{
|
|
|
|
- border: 1px solid #eee;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-table input[type=text], table textarea{
|
|
|
|
- width: 100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-form button, form input[type=submit]{
|
|
|
|
- border:none;
|
|
|
|
- background:none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-form button:hover, form input[type=submit]:hover{
|
|
|
|
- background: #EEE;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-button:hover{
|
|
|
|
- cursor: pointer;
|
|
|
|
- cursor: hand;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-img{
|
|
|
|
- max-width: 100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-p:first-child{
|
|
|
|
- margin-top: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-table{
|
|
|
|
- border-collapse: collapse;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-th{
|
|
|
|
- text-align: left;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-td, th{
|
|
|
|
- padding:0 10px 5px 0;
|
|
|
|
- vertical-align: top;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#menu{
|
|
|
|
- background:#fafafa;
|
|
|
|
- width:280px;
|
|
|
|
- left:0;
|
|
|
|
- position:fixed;
|
|
|
|
- height:100%;
|
|
|
|
- /*box-shadow: 7px 0px 4px 0px rgba(0,0,0,0.15);*/
|
|
|
|
- box-shadow: -2px 0px 0px 0px #eee inset;
|
|
|
|
- /*border-right: 2px solid #eeeeee;*/
|
|
|
|
- z-index: 400;
|
|
|
|
- overflow-x: hidden;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#menu .header{
|
|
|
|
- z-index: 401;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*#menu>div{
|
|
|
|
- position: relative;
|
|
|
|
- height:100%
|
|
|
|
-}*/
|
|
|
|
-
|
|
|
|
-/*#menu>div>*{
|
|
|
|
- padding-left:10px;
|
|
|
|
-}*/
|
|
|
|
-
|
|
|
|
-#menu-button{
|
|
|
|
- display:none;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#nav-container{
|
|
|
|
- /*position:fixed;
|
|
|
|
- top:64px;
|
|
|
|
- bottom:0;
|
|
|
|
- width:270px;*/
|
|
|
|
- overflow: auto;
|
|
|
|
- width:100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#main{
|
|
|
|
- padding-left:280px;
|
|
|
|
- padding-top:64px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#main>*{
|
|
|
|
- padding-left:20px !important;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#main-header{
|
|
|
|
- position: fixed;
|
|
|
|
- padding-left: 280px;
|
|
|
|
- left:0;
|
|
|
|
- right:0;
|
|
|
|
- z-index: 1;
|
|
|
|
- /*box-shadow: 0 5px 10px rgba(249,249,249, 0.9);*/
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#main-header .header>*{
|
|
|
|
- padding-left: 20px !important;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#content{
|
|
|
|
- padding:20px;
|
|
|
|
- margin-bottom:60px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#buttons{
|
|
|
|
- position:fixed;
|
|
|
|
- bottom: 20px;
|
|
|
|
- right: 20px;
|
|
|
|
- left:280px;
|
|
|
|
- vertical-align: bottom;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#buttons>table{
|
|
|
|
- width: 100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#buttons>table tr>td{
|
|
|
|
- vertical-align: bottom;
|
|
|
|
- padding:0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#buttons>table tr>td:last-child{
|
|
|
|
- text-align: right;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#buttons>table td>*:not(:first-child){
|
|
|
|
- margin-top:20px;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#buttons 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:#F44336;
|
|
|
|
- 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;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#cookiePopup > div{
|
|
|
|
- margin-top:40px;
|
|
|
|
- text-align: center;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
|
|
+ margin: 0;
|
|
|
|
+ padding: 10px 10px 10px 40px;
|
|
|
|
+}
|
|
|
|
+nav a {
|
|
|
|
+ color: black;
|
|
|
|
+ text-decoration: none;
|
|
|
|
+}
|
|
|
|
+h2 {
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
+}
|
|
|
|
+h2 a {
|
|
|
|
+ color: inherit;
|
|
|
|
+}
|
|
|
|
+h3 {
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
+}
|
|
|
|
+h3 :first-child {
|
|
|
|
+ margin-top: 0px;
|
|
|
|
+}
|
|
|
|
+hr {
|
|
|
|
+ border: 1px solid #eeeeee;
|
|
|
|
+}
|
|
|
|
+table {
|
|
|
|
+ border-collapse: collapse;
|
|
|
|
+}
|
|
|
|
+table input[type=text],
|
|
|
|
+table textarea {
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+th {
|
|
|
|
+ text-align: left;
|
|
|
|
+}
|
|
|
|
+td,
|
|
|
|
+th {
|
|
|
|
+ padding: 0 10px 5px 0;
|
|
|
|
+ vertical-align: top;
|
|
|
|
+}
|
|
|
|
+form button,
|
|
|
|
+form input[type=submit] {
|
|
|
|
+ border: none;
|
|
|
|
+ background: none;
|
|
|
|
+}
|
|
|
|
+form button:hover,
|
|
|
|
+form input[type=submit]:hover {
|
|
|
|
+ background: #eeeeee;
|
|
|
|
+}
|
|
|
|
+button:hover {
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ cursor: hand;
|
|
|
|
+}
|
|
|
|
+img {
|
|
|
|
+ max-width: 100%;
|
|
|
|
+}
|
|
|
|
+p:first-child {
|
|
|
|
+ margin-top: 0;
|
|
|
|
+}
|
|
|
|
+#menu {
|
|
|
|
+ background: #fafafa;
|
|
|
|
+ width: 280px;
|
|
|
|
+ left: 0;
|
|
|
|
+ position: fixed;
|
|
|
|
+ height: 100%;
|
|
|
|
+ box-shadow: -2px 0px 0px 0px #eeeeee inset;
|
|
|
|
+ z-index: 400;
|
|
|
|
+ overflow-x: hidden;
|
|
|
|
+}
|
|
|
|
+#menu .header {
|
|
|
|
+ z-index: 401;
|
|
|
|
+}
|
|
|
|
+#menu-button {
|
|
|
|
+ display: none;
|
|
|
|
+}
|
|
|
|
+#nav-container {
|
|
|
|
+ overflow: auto;
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+#main {
|
|
|
|
+ padding-left: 280px;
|
|
|
|
+ padding-top: 64px;
|
|
|
|
+}
|
|
|
|
+#main > * {
|
|
|
|
+ padding-left: 20px !important;
|
|
|
|
+}
|
|
|
|
+#main-header {
|
|
|
|
+ position: fixed;
|
|
|
|
+ padding-left: 280px;
|
|
|
|
+ left: 0;
|
|
|
|
+ right: 0;
|
|
|
|
+ z-index: 1;
|
|
|
|
+}
|
|
|
|
+#main-header .header > * {
|
|
|
|
+ padding-left: 20px !important;
|
|
|
|
+}
|
|
|
|
+#content {
|
|
|
|
+ padding: 20px;
|
|
|
|
+ margin-bottom: 60px;
|
|
|
|
+}
|
|
|
|
+#buttons {
|
|
|
|
+ position: fixed;
|
|
|
|
+ bottom: 20px;
|
|
|
|
+ right: 20px;
|
|
|
|
+ left: 280px;
|
|
|
|
+ vertical-align: bottom;
|
|
|
|
+}
|
|
|
|
+#buttons > table {
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+#buttons > table tr > td {
|
|
|
|
+ vertical-align: bottom;
|
|
|
|
+ padding: 0;
|
|
|
|
+}
|
|
|
|
+#buttons > table tr > td:last-child {
|
|
|
|
+ text-align: right;
|
|
|
|
+}
|
|
|
|
+#buttons > table tr > td:not(:first-child) {
|
|
|
|
+ margin-top: 20px;
|
|
|
|
+}
|
|
|
|
+#buttons 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: #00e676;
|
|
|
|
+ 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;
|
|
|
|
+}
|
|
|
|
+#cookiePopup > div {
|
|
|
|
+ margin-top: 40px;
|
|
|
|
+ text-align: center;
|
|
|
|
+}
|
|
.header {
|
|
.header {
|
|
- height:64px;
|
|
|
|
- background:#F44336;
|
|
|
|
- color:white;
|
|
|
|
- white-space:nowrap;
|
|
|
|
- padding:0 !important;
|
|
|
|
- overflow: hidden;
|
|
|
|
- box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.8);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.header>*{
|
|
|
|
- line-height:64px;
|
|
|
|
- font-size:24px;
|
|
|
|
- font-weight:400;
|
|
|
|
- padding-left: 10px;
|
|
|
|
- white-space: nowrap;
|
|
|
|
- display: inline;
|
|
|
|
- vertical-align: middle;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.header>h2>span{
|
|
|
|
- display: inline-block;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.header>img{
|
|
|
|
- height:50%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.header span{
|
|
|
|
- display: inline-block;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.header span: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;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.errors ul{
|
|
|
|
- margin: 0;
|
|
|
|
- list-style: square;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row{
|
|
|
|
- width:100%;
|
|
|
|
- clear:both;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row>.col {
|
|
|
|
- width:100%;
|
|
|
|
- float:left;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-lg-1>.col{
|
|
|
|
- width:100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-lg-2>.col{
|
|
|
|
- width:50%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-lg-3>.col{
|
|
|
|
- width:33.3333%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-lg-4>.col{
|
|
|
|
- width:25%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-md-1>.col{
|
|
|
|
- width:100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-md-2>.col{
|
|
|
|
- width:50%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-md-3>.col{
|
|
|
|
- width:33.3333%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-md-4>.col{
|
|
|
|
- width:25%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-sm-1>.col{
|
|
|
|
- width:100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-sm-2>.col{
|
|
|
|
- width:50%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-sm-3>.col{
|
|
|
|
- width:33.3333%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.row.col-sm-4>.col{
|
|
|
|
- width:25%;
|
|
|
|
-}
|
|
|
|
|
|
+ height: 64px;
|
|
|
|
+ background: #f44336;
|
|
|
|
+ color: white;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ padding: 0 !important;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.8);
|
|
|
|
+}
|
|
|
|
+.header > * {
|
|
|
|
+ line-height: 64px;
|
|
|
|
+ font-size: 24px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ padding-left: 10px;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ display: inline;
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+}
|
|
|
|
+.header > h2 > span {
|
|
|
|
+ display: inline-block;
|
|
|
|
+}
|
|
|
|
+.header > img {
|
|
|
|
+ height: 50%;
|
|
|
|
+}
|
|
|
|
+.header span {
|
|
|
|
+ display: inline-block;
|
|
|
|
+}
|
|
|
|
+.header span: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;
|
|
|
|
+}
|
|
|
|
+.errors ul {
|
|
|
|
+ margin: 0;
|
|
|
|
+ list-style: square;
|
|
|
|
+}
|
|
|
|
+.row {
|
|
|
|
+ width: 100%;
|
|
|
|
+ clear: both;
|
|
|
|
+}
|
|
|
|
+.row > .col {
|
|
|
|
+ width: 100%;
|
|
|
|
+ float: left;
|
|
|
|
+}
|
|
|
|
+.row .col-lg-1 > .col {
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+.row .col-lg-2 > .col {
|
|
|
|
+ width: 50%;
|
|
|
|
+}
|
|
|
|
+.row .col-lg-3 > .col {
|
|
|
|
+ width: 33.3333%;
|
|
|
|
+}
|
|
|
|
+.row .col-lg-4 > .col {
|
|
|
|
+ width: 25%;
|
|
|
|
+}
|
|
|
|
+.row .col-md-1 > .col {
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+.row .col-md-2 > .col {
|
|
|
|
+ width: 50%;
|
|
|
|
+}
|
|
|
|
+.row .col-md-3 > .col {
|
|
|
|
+ width: 33.3333%;
|
|
|
|
+}
|
|
|
|
+.row .col-md-4 > .col {
|
|
|
|
+ width: 25%;
|
|
|
|
+}
|
|
|
|
+.row .col-sm-1 > .col {
|
|
|
|
+ width: 100%;
|
|
|
|
+}
|
|
|
|
+.row .col-sm-2 > .col {
|
|
|
|
+ width: 50%;
|
|
|
|
+}
|
|
|
|
+.row .col-sm-3 > .col {
|
|
|
|
+ width: 33.3333%;
|
|
|
|
+}
|
|
|
|
+.row .col-sm-4 > .col {
|
|
|
|
+ width: 25%;
|
|
|
|
+}
|