123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /*
- This file could be used under both CC-BY-SA 4.0 or at your chosing GNU GPLv3 or any later version
- */
- html {}
- * {
-
- font-size: 10px;
- list-style-type: none;
- background-color: #210a36;
- }
- body{
- color: #95bcf2;
- font-family:Open Sans;
- font-weight: bold;
- margin-top: 5%;
- margin-bottom: 5%;
- margin-right: 20%;
- margin-left: 20%;
- }
- @font-face {
- font-family: "Open-Sans-Extrabold" Open Sans;
- /*src: url(/font);*/
- }
- pre {
- /*background: #a89984;*/
- border: 10px solid #928374;
- border-radius: 10px;
- padding: 1em;
- margin: 1em;
- white-space: pre-wrap;
- }
- h1 {
- font-size: 30px;
- color: #CC35F0;
- }
- h2 {
- font-size: 25px;
- color: #FFFFFF;
- }
- h3 {
- font-size: 22px;
- color: #3798DD;
- }
- code {
- background-color: #000000;
- /*border: 5px solid #928374;*/
- border-radius: 5px;
- word-wrap: break-word;
- overflow-wrap: break-word;
- }
- ul li {
- list-style: inside circle;
- display:list-item;
- }
- table {
- border-collapse: collapse;
- border: 2px solid #7c6f64;
- }
- th,td {
- border: 2px solid #7c6f64;
- }
- a {
- color: #C648EA;
- text-decoration: none;
- }
- a:hover {
- color: #DB82F4;
- text-decoration: none;
- }
- img {
- max-width: 50%;
- height: auto;
- }
- input {
- padding: 12px 20px;
- margin: 8px 8px 8px 8px;
- box-sizing: border-box;
- border: 0px solid black;
- border-radius: 15px;
- background-color: #210a36;
- color: #ffffff;
- font-weight: bold;
- box-shadow: 0px 0px 5px #b058c6
- }
- .song {
- padding: 12px 20px;
- margin: 8px 0;
- box-sizing: border-box;
- border: 0px solid black;
- background-color: #252525;
- color: #959595;
- font-weight: bold;}
- button, .button {
- padding: 12px 15px;
- margin: 8px 6px;
- box-sizing: border-box;
- border: 0px solid black;
- border-radius: 15px;
- background-color: #210a36;
- color: #ffffff;
- font-weight: bold;
- box-shadow: 0px 0px 5px #b058c6
- }
- .button { line-height: 3 }
- summary {
- color: #b058c6;
- font-weight: bold;
- display: inline;
- box-sizing: border-box;
- }
- summary:hover, summary:hover > h1 {
- color: white;
- cursor: pointer;
- }
- button:hover, input:hover, button:focus, input:focus, .button:hover, .button:focus {
- /* background-color: #c370d9; */
- box-shadow: 0px 0px 6px white;
- color: white;
- }
- hr {
- border-top: 1px solid #b058c6;
- }
-
- p {
- margin-right: 5%;
- margin-left: 5%;
- }
- .searchbar {
- width: 90%;
- height: 70;
- position: fixed;
- top: 0;
- margin-top: 1%;
- left: 5%;
- }
- .nowplayingbar {
- width: 90%;
- height: 200;
- position: fixed;
- bottom: 0;
- margin-bottom: 1%;
- left: 5%;
- }
- .side_found { margin-top: 200}
- /* prgoress bar theme */
- .back_progress {background-color: #311a46;
- width: 100%;
- height: 6;
-
- border-radius: 3px;
- box-shadow: 0px 0px 5px #b058c6;
- }
- .front_progress {background-color: #b058c6;
- height: 6;
- border-radius: 3px;}
- .ulcont {
- width: 100%;
- }
- ul{
- padding: 0 0;
- margin: 0 0;
- list-style: none;
- width: 100%;
- border: 0px solid black;
- height: 30px;
- }
- ul li{
- width: 30%;
- display: block;
- float: left;
- text-align: right;
- line-height: 30px;
- }
- ul li:first-child{
- text-align: left;
- max-width: 70%;
- width: 70%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .slider {
- -webkit-appearance: none;
- width: 80%;
- height: 30px;
- border-radius: 15px;
- background: #311a46;
- box-shadow: 0px 0px 5px #b058c6;
- overflow: hidden;
- white-space: nowrap;
- box-sizing: border-box;
- }
- .slider::-webkit-slider-thumb {
- -webkit-appearance: none;
- appearance: none;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- background: #b058c6;
- cursor: pointer;
- }
- .slider::-moz-range-thumb {
- width: 20px;
- height: 20px;
- border-radius: 50%;
- background: #b058c6;
- cursor: pointer;
- }
- img {
- border-radius: 20px;
- }
- }
|