123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- html, body {
- width: 100%;
- height: 100%;
- }
- html {
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
- -webkit-tap-highlight-color: transparent;
- }
- body {
- line-height: 1.6;
- position: relative;
- font-family: "Microsoft Yahei", tahoma, arial, "Hiragino Sans GB";
- }
- .root {
- display: flex;
- place-content: center;
- margin-top: 3rem;
- }
- .container-shell {
- background: hsla(0, 0%, 50%, 0.5);
- width: 100%;
- position: relative;
- border-radius: 5px;
- }
- .container-shell:before {
- content: "jessibuca demo player";
- position: absolute;
- color: darkgray;
- left: 10px;
- text-shadow: 1px 1px black;
- }
- #container {
- background: rgba(13, 14, 27, 0.7);
- width: 960px;
- height: 597px;
- }
- .container {
- background: rgba(13, 14, 27, 0.7);
- width: 320px;
- height: 199px;
- display: inline-block;
- margin-right: 10px;
- margin-bottom: 10px;
- }
- .input {
- display: flex;
- margin-top: 10px;
- max-width: 960px;
- color: white;
- place-content: stretch;
- }
- .input2 {
- bottom: 0px;
- }
- .input input {
- flex: auto;
- }
- .err {
- position: absolute;
- top: 40px;
- left: 10px;
- color: red;
- }
- .option {
- position: absolute;
- top: 4px;
- right: 10px;
- display: flex;
- place-content: center;
- font-size: 12px;
- }
- .option span {
- color: white;
- }
- .page {
- background: url('./bg.jpg');
- background-repeat: no-repeat;
- background-position: top;
- }
- button{
- font-size: 12px;
- padding: 4px 8px;
- border-radius: 4px;
- }
- .container-multi{
- text-align: center;
- }
- .audio-container{
- width: 960px;
- }
- @media (max-width: 720px) {
- input {
- outline: 0;
- }
- * {
- margin: 0;
- padding: 0;
- }
- * {
- -webkit-tap-highlight-color: transparent
- }
- a img {
- border: 0;
- }
- a {
- text-decoration: none;
- }
- li {
- list-style: none;
- }
- ol,
- ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- #container {
- width: 100%;
- height: 52.7vw;
- margin: 0 auto;
- }
-
- .input{
- max-width: 95vw;
- }
- .audio-container{
- width: 95vw;
- }
- .container {
- width: 95vw;
- height: 52.7vw;
- margin: 0 auto;
- margin-bottom: 10px;
- display: block;
- }
- }
|