Spaces:
Running
Running
File size: 1,336 Bytes
d94ccbe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
.main-container {
position: relative;
width: 100%;
min-height: 300px;
}
.container {
width: 300px;
position: relative;
}
/*tabs*/
.tabs {
display: flex;
left: 0;
}
.tab-button {
display: inline-block;
background-color: transparent;
padding: 5px 10px;
cursor: pointer;
margin-bottom: -2px;
border-top: 2px solid transparent;
border-left: 2px solid transparent;
border-right: 2px solid transparent;
border-bottom: 0px;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
color: gray;
}
.tab-button.active {
background-color: white;
border-top: 2px solid #dee2e6;
border-left: 2px solid #dee2e6;
border-right: 2px solid #dee2e6;
color: black;
}
/*content*/
.content {
border: gray;
border-left-width: 2px;
}
.content-pane {
display: none;
padding: 20px;
}
.content-pane.active {
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
*, :before, :after {
box-sizing: border-box;
border-width: 0;
border-style: solid;
border-color: #e5e7eb;
}
.flex {
display: flex;
}
.border-transparent {
border-color: transparent;
}
.border-b-2 {
border-bottom: 2px solid #dee2e6;
}
.border-lr-2 {
border-left: 2px solid #dee2e6;
border-right: 2px solid #dee2e6;
}
|