Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* .night-mode = pc, .night_mode = mobile */
- /* General Settings */
- .card {
- height: 100%;
- display: -webkit-box;
- -webkit-box-align: stretch;
- -webkit-box-pack: center;
- -webkit-box-orient: vertical;
- margin: 1;
- padding: 0;
- font-family: UD Digi Kyokasho N-R, GenEi Koburi Mincho v5 Regular, IPAexGothic, MS UI Gothic;
- text-align: center;
- background-color: #DEE4E7;
- font-size: 15px;
- }
- .night-mode .card {
- background-color: #06040D;
- }
- .night_mode .card {
- background-color: #06040D;
- }
- .font-big {
- font-size: 50px;
- }
- .font-medium {
- font-size: 30px;
- }
- .font-small {
- font-size: 20px;
- }
- .font-smaller {
- font-size: 12px;
- }
- .pitch-size {
- font-size: 25px;
- }
- /* Top */
- #expression {
- width: 80%;
- margin: 1em auto 1em;
- background-color: #FFCD58;
- color: #000000;
- border-radius: 10px;
- padding: 0.2em 0;
- }
- .night-mode #expression {
- background-color: #009494;
- color: #FFFFFF;
- }
- .night_mode #expression {
- background-color: #009494;
- color: #FFFFFF;
- }
- /* Glossary Box */
- #usage {
- padding: 2% 10%;
- margin: 1% 5%;
- color: #000000;
- background-color: #DEE4E7;
- border: solid grey;
- border-radius: 15px;
- }
- .night-mode #usage {
- color: #fff;
- background-color: #0B0716;
- border-color: #7F7F7F;
- }
- .night_mode #usage {
- color: #FFFFFF;
- background-color: #0B0716;
- border-color: #7F7F7F;
- }
- /* Bottom */
- /* img also affects diagram size */
- img {
- width: auto;
- height: auto;
- max-width: 260px;
- max-height: 210px;
- }
- .NSFW img {
- filter: blur(30px);
- }
- .NSFW img:hover {
- filter: blur(0px);
- }
- /* Sentence Design */
- .sentence {
- color: #000000;
- }
- .night-mode .sentence {
- color: #FFFFFF;
- }
- .night_mode .sentence {
- color: #FFFFFF;
- }
- b {
- font-weight: 500;
- color: #FF8300;
- }
- .night-mode b {
- font-weight: 500;
- color: #A4A4FF;
- }
- .night_mode b {
- font-weight: 500;
- color: #A4A4FF;
- }
- /* Extra Design */
- #extra {
- padding: 1% 1%;
- color: #000000;
- background-color: #DEE4E7;
- border: solid grey;
- border-radius: 15px;
- }
- .night-mode #extra {
- color: #FFFFFF;
- background-color: #0B0716;
- border-color: #7F7F7F;
- }
- .night_mode #extra {
- color: #FFFFFF;
- background-color: #0B0716;
- border-color: #7F7F7F;
- }
- .replay-button svg path {
- stroke: #325646;
- fill: #000000;
- }
- .night-mode .replay-button svg path {
- stroke: #0B0716;
- fill: #FFFFFF;
- }
- .night_mode .replay-button svg path {
- stroke: #0B0716;
- fill: #FFFFFF;
- }
- .replay-button svg circle {
- fill: #DEE4E7;
- stroke: #DEE4E7;
- }
- .night-mode .replay-button svg circle {
- fill: #0B0716;
- stroke: #0B0716;
- }
- .night_mode .replay-button svg circle {
- fill: #0B0716;
- stroke: #0B0716;
- }
- .replay-button {
- width: 35px;
- }
- /* Mobile Settings */
- @media screen and (orientation:portrait) {
- .mobile .night_mode {
- background-color: #06040D;
- }
- .mobile .font-big {
- font-size: 35px;
- }
- .mobile .font-medium {
- font-size: 20px;
- }
- .mobile .font-small {
- font-size: 13px;
- }
- .mobile .font-smaller {
- font-size: 8px;
- }
- .mobile img {
- width: auto;
- height: auto;
- max-width: 190px;
- max-height: 140px;
- }
- }
- @media screen and (orientation:landscape) {
- .mobile .night_mode {
- background-color: #06040D;
- }
- .mobile img {
- width: auto;
- height: auto;
- max-width: 210px;
- max-height: 160px;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement