Spaces:
Sleeping
Sleeping
File size: 2,528 Bytes
960cd20 |
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
.main-container {
position: relative;
width: 100%;
min-height: 300px;
font-size: 1rem;
font-weight: 400;
}
.container {
width: 1140px;
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: 0;
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 {
min-height: 550px;
}
.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;
}
.main-container label {
margin-bottom: 0.5rem;
}
.play-button button {
margin-left: 10px;
margin-right: 10px;
}
.player {
justify-content: center;
align-items: center;
height: 80px;
margin-top: 20px;
margin-bottom: 20px;
border: 1px solid rgba(0, 0, 0, .125);
border-radius: 0.25rem;
/*background-color: rgba(238, 238, 238, 0.2);*/
}
.player audio {
width: 600px;
}
.play-button {
display: flex;
}
.play-button .form-check input, .play-button .form-check label {
display: inline-block;
vertical-align: middle
}
.play-button .form-check label {
margin-top: 8px;
}
.floating-icon {
position: fixed;
bottom: 20px;
right: 20px;
}
.settings-icon:hover {
cursor: pointer;
}
/*@keyframes rotate {*/
/* 0% {*/
/* transform: rotate(0deg);*/
/* }*/
/* 100% {*/
/* transform: rotate(360deg);*/
/* }*/
/*}*/
/*.floating-icon .settings-icon {*/
/* display: inline-block;*/
/* animation: rotate 2s linear infinite;*/
/*}*/
.api-key-input {
display: none;
position: absolute;
bottom: 40px;
right: 0;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
padding: 10px;
}
.api-key-input input {
width: 260px;
}
.api-key-input button {
padding: 5px 10px;
background-color: #3498db;
color: #fff;
border: none;
cursor: pointer;
}
|