123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- // @import "musare-theme";
- @import "colors";
- @import "breakpoints";
- @import "login";
- @import "navbar";
- @import "register";
- @import "setPassword";
- @import "settings";
- @import "termsPrivacy";
- @import "profile";
- @import "team";
- @import "home";
- @import "station";
- @import "overlays";
- @import "overlaySearchYouTube";
- @import "overlayQueueList";
- @import "specific/button";
- @import "specific/form";
- @import url("https://fonts.googleapis.com/css?family=Roboto:100,400,500,700");
- html, body {
- margin: 0;
- padding: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
- min-width: 320px;
- text-rendering: optimizeLegibility;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- background-color: #F5F5F5;
- color: $musare_color_primary_gray;
- }
- * {
- padding: 0;
- margin: 0;
- border: 0;
- }
- h1, h2, h3, h4, h5, h6 {
- font-weight: normal;
- }
- h1 {
- text-align: center;
- font-size: 32px;
- line-height: 43px;
- margin-bottom: 16px;
- }
- .hidden {
- display: none;
- }
- // Temp Start
- .liked {
- color: green;
- }
- .disliked {
- color: red;
- }
- // Temp End
- main, #overlays .content {
- margin-left: auto;
- margin-right: auto;
- margin-top: 16px;
- width: 296px;
- .custom-messages {
- border: solid 1px;
- padding: 8px;
- margin-bottom: 16px;
- background-color: $musare_color_white;
- &.custom-messages-error {
- border-color: $musare_color_primary_red;
- color: $musare_color_primary_red;
- }
- &.custom-messages-info {
- border-color: $musare_color_dark_blue;
- color: $musare_color_dark_blue;
- }
- &.custom-messages-success {
- border-color: $musare_color_green;
- color: $musare_color_green;
- }
- p {
- font-weight: 500;
- font-size: 16px;
- line-height: 21px;
- margin-bottom: 8px;
- }
- ul {
- list-style-position: inside;
- li {
- font-size: 14px;
- line-height: 19px;
- }
- }
- }
- a {
- color: $musare_color_primary_blue;
- text-decoration: none;
- transition: .1s ease;
- &:hover, &:active {
- color: $musare_color_secondary_blue;
- }
- }
- }
|