33 lines
606 B
CSS
Raw Normal View History

2015-01-11 17:03:55 -05:00
.tabs-list {
2015-01-11 16:55:54 -05:00
text-align: center;
width: 100%;
margin: 0;
padding: 0;
}
2015-01-11 17:03:55 -05:00
.tab-item {
2015-01-11 16:55:54 -05:00
font-weight: 600;
font-size: 13px;
float: left;
padding: 13px 23.02%;
2015-01-11 16:55:54 -05:00
margin: 0;
list-style: none;
cursor: pointer;
}
2015-01-11 17:03:55 -05:00
.tab-item.active {
2015-01-11 16:55:54 -05:00
border-radius: top 5px;
border: 1px solid #ddd;
border-bottom: none;
margin-bottom: -1px !important;
2015-01-12 16:51:10 -05:00
padding: 13px 23.03% 14px 23.02% !important;
2015-01-11 16:55:54 -05:00
background-color: #fff;
color: #333;
}
.tabs-content-container {
2015-01-12 16:51:10 -05:00
padding: 4.2% 15px 15px 15px;
2015-01-11 16:55:54 -05:00
}
2015-01-12 18:18:32 -05:00
.tabs-content {
overflow: scroll;
min-width: 500px;
max-height: 500px;
}