wynnbuilder-idk/css/sq2bs.css

559 lines
8.6 KiB
CSS
Raw Normal View History

2021-10-21 14:11:04 +00:00
* {
font-family: 'Nunito', sans-serif;
}
2021-10-20 15:52:33 +00:00
#body {
background-color: #121212;
2021-10-20 15:52:33 +00:00
}
/* builder containers */
.slider {
2022-01-10 06:16:24 +00:00
-webkit-appearance: none;
background: #AAAAAA;
border-radius: 30px;
height: 0.5rem;
}
/***** Chrome, Safari, Opera, and Edge Chromium *****/
.slider::-webkit-slider-runnable-track{
2022-01-10 06:16:24 +00:00
-webkit-appeareance: none;
background:transparent;
height: 0.5rem;
}
/******** Firefox **** **/
.slider::-moz-range-track {
2022-01-10 06:16:24 +00:00
-webkit-appearance: none;
background-color: transparent;
border-radius: 30px;
height: 0.5rem;
}
.slider::-webkit-slider-thumb {
2022-01-10 06:16:24 +00:00
-webkit-appearance: none;
appearance: none;
height: 0.75rem;
width: 0.75rem;
border-radius: 0.375rem;
margin-top: -0.125rem;
background-color: #FFFFFF;
border: solid 2px #82CFD0;
}
input[type=range]:focus {
outline: none; /* Removes the border. */
}
2021-10-20 15:52:33 +00:00
/* equipment field specifics */
2021-10-23 13:51:54 +00:00
/* inputs and dropdowns */
.form-control {
transition: none !important;
box-shadow: none !important;
width: 95% !important;
}
2021-10-21 14:11:04 +00:00
2021-10-23 13:51:54 +00:00
ul {
list-style-type: none;
2021-10-21 14:11:04 +00:00
}
2021-10-23 13:51:54 +00:00
ul.search-box {
position: absolute;
padding: 0;
overflow: auto;
2022-07-29 17:50:43 +00:00
z-index: 10;
2021-10-21 14:11:04 +00:00
}
2021-10-23 13:51:54 +00:00
li.search-item {
cursor: pointer;
2021-10-21 14:11:04 +00:00
}
2021-10-23 13:51:54 +00:00
li.search-item:hover {
background-color: hsl(0, 0%, 11%) !important;
2021-10-21 14:11:04 +00:00
}
2021-10-26 11:43:51 +00:00
/* boosts styles */
.button-boost:hover {
background-color: rgba(255, 255, 255, .1);
}
button.toggleOn {
2021-10-26 11:43:51 +00:00
background-color: #0a0 !important;
}
2021-10-26 11:43:51 +00:00
/* floating tooltip styles */
.float-tooltip {
background-color: hsl(0, 0%, 16%);
position: absolute;
2021-10-27 13:51:37 +00:00
transition: .3s;
2021-10-26 11:43:51 +00:00
cursor: pointer;
}
/* generic */
2021-10-20 15:52:33 +00:00
input {
min-width: 0;
width: 100%;
}
input.equipment-input {
font-weight: bold;
background-color: hsl(0, 0%, 21%) !important;
border-radius: 0.375rem !important;
min-height: calc(1.2 * var(--scaled-fontsize) + 2px);
padding: 0rem 0.5rem;
font-size: var(--scaled-fontsize);
--bs-gutter-y: 1rem;
--bs-gutter-x: 3rem
}
2022-07-25 05:38:30 +00:00
input.equipment-input:not(.is-invalid) {
border-color: rgba(33, 37, 41, 1) !important;
}
.my-container {
position: fixed; /* Stay in place */
left: var(--sidebar-width);
overflow-y: scroll;
height: 100%;
2021-10-20 15:52:33 +00:00
}
2021-10-23 13:51:54 +00:00
.text-right {
float: right;
}
.text-left {
float: left;
}
.spell-display p {
margin-bottom: 0;
}
.spell-display b {
font-size: 3rem;
font-weight: bold;
}
:root {
--scaled-fontsize: 2.5rem;
}
.scaled-font {
2021-10-21 02:51:54 +00:00
font-size: 2.5rem;
}
.box-title {
text-align: center;
font-size: 3rem;
}
.item-title {
text-align: center;
overflow-wrap: break-word;
font-size: 3.5rem;
}
2021-10-21 02:51:54 +00:00
2022-05-13 23:39:00 +00:00
.big-title {
text-align: center;
overflow-wrap: break-word;
font-size: 4.5rem;
}
2021-10-20 15:52:33 +00:00
.skp-tooltip {
2021-10-21 02:51:54 +00:00
font-size: 2.1875rem;
2021-10-20 15:52:33 +00:00
font-weight: bold;
}
2021-10-27 13:51:37 +00:00
.spellcost-tooltip b {
font-size: 2.1875rem !important;
font-weight: bold;
}
2021-10-21 14:11:04 +00:00
.warning {
color: #ff8180;
font-size: 1.875rem;
margin-bottom: 0;
font-weight: bold;
}
2021-10-21 02:51:54 +00:00
.scaled-item-icon {
width: 6rem;
2021-10-21 02:51:54 +00:00
}
.scaled-item-icon img {
width: 6rem;
2021-10-21 02:51:54 +00:00
}
2021-10-26 11:43:51 +00:00
.scaled-bckgrd {
width: 10rem;
height: 10rem;
}
.scaled-bckgrd img {
width: 7rem;
2021-10-26 11:43:51 +00:00
}
.overall-box {
max-width: 95%;
2021-10-26 11:43:51 +00:00
}
2022-07-29 21:35:01 +00:00
@media screen and (orientation: landscape) and (max-width: 1199px) {
:root {
--scaled-fontsize: 1rem;
}
.scaled-font {
font-size: 1rem;
}
.box-title {
font-size: 1rem;
}
.item-title {
font-size: 1.2rem;
}
.big-title {
font-size: 1.5rem;
}
.skp-tooltip {
font-size: 1rem;
}
.spellcost-tooltip b {
font-size: .625rem !important;
}
.scaled-item-icon {
width: 3.2rem;
}
.scaled-item-icon img {
width: 2.8rem;
}
.scaled-bckgrd {
width: 4rem;
height: 4rem;
}
.scaled-bckgrd img {
width: 2.8rem;
}
.warning {
font-size: .7rem;
}
.spell-display b {
font-size: 1rem;
}
}
2021-10-21 14:11:04 +00:00
@media screen and (min-width: 1200px) and (max-width: 1400px) {
:root {
--scaled-fontsize: 1rem;
}
.overall-box {
padding-left: var(--sidebar-width);
max-width: 100%;
}
.equipment-input {
--bs-gutter-y: 0.5rem;
--bs-gutter-x: 1.5rem;
}
.level-input {
margin-top: 0
}
2021-10-21 14:11:04 +00:00
.scaled-font {
font-size: 1rem;
2021-10-21 14:11:04 +00:00
}
.box-title {
font-size: 1rem;
}
.item-title {
2022-05-13 23:39:00 +00:00
font-size: 1.2rem;
}
2021-10-21 14:11:04 +00:00
2022-05-13 23:39:00 +00:00
.big-title {
font-size: 1.5rem;
}
2021-10-21 14:11:04 +00:00
.skp-tooltip {
font-size: .625rem;
}
2021-10-27 13:51:37 +00:00
.spellcost-tooltip b {
font-size: .625rem !important;
}
2021-10-21 14:11:04 +00:00
.scaled-item-icon {
width: 2.6rem;
2021-10-21 14:11:04 +00:00
}
.scaled-item-icon img {
width: 2.2rem;
2021-10-21 14:11:04 +00:00
}
2021-10-26 11:43:51 +00:00
.scaled-bckgrd {
width: 4rem;
height: 4rem;
}
.scaled-bckgrd img {
width: 2.8rem;
}
2021-10-21 14:11:04 +00:00
.warning {
font-size: .7rem;
}
.spell-display b {
font-size: 1rem;
}
}
@media screen and (min-width: 1400px) {
:root {
--scaled-fontsize: 1rem;
}
.overall-box {
padding-left: var(--sidebar-width);
max-width: 100%;
}
.equipment-input {
--bs-gutter-y: 0.5rem;
--bs-gutter-x: 1.5rem
}
.level-input {
margin-top: 0
}
2021-10-21 02:51:54 +00:00
.scaled-font {
2021-10-21 14:11:04 +00:00
font-size: 1rem;
2021-10-21 02:51:54 +00:00
}
.box-title {
font-size: 1.25rem;
}
.item-title {
font-size: 1.5rem;
}
2022-05-13 23:39:00 +00:00
.big-title {
font-size: 1.8rem;
}
2021-10-21 02:51:54 +00:00
.skp-tooltip {
2021-10-21 14:11:04 +00:00
font-size: .78rem;
2021-10-21 02:51:54 +00:00
}
2021-10-27 13:51:37 +00:00
.spellcost-tooltip b {
font-size: .78rem !important;
}
2021-10-21 02:51:54 +00:00
.scaled-item-icon {
width: 3.2rem;
2021-10-21 02:51:54 +00:00
}
.scaled-item-icon img {
width: 2.7rem;
2021-10-21 02:51:54 +00:00
}
2021-10-26 11:43:51 +00:00
.scaled-bckgrd {
width: 5rem;
height: 5rem;
}
.scaled-bckgrd img {
width: 3.5rem;
}
2021-10-21 14:11:04 +00:00
.warning {
font-size: .8rem;
}
2021-10-21 02:51:54 +00:00
2021-10-21 14:11:04 +00:00
.spell-display b {
font-size: 1.2rem;
}
2021-10-29 08:08:36 +00:00
}
/* WynnAtlas Mini */
.search-field {
background-color: hsl(0, 0%, 14%) !important;
color: white;
font-weight: bold;
border-color: hsl(0, 0%, 8%);
2021-10-21 14:11:04 +00:00
}
2021-10-21 02:51:54 +00:00
2021-10-20 15:52:33 +00:00
/* Fake button for build stats */
.fake-button {
cursor: pointer;
}
2022-01-07 08:12:00 +00:00
.fake-button:hover, .selected-btn{
2021-10-26 11:43:51 +00:00
background-color: hsl(0, 0%, 14%) !important;
2021-10-20 15:52:33 +00:00
}
2022-01-07 08:12:00 +00:00
2021-10-20 15:52:33 +00:00
/* material design dark mode */
.dark-1 {
background-color: hsl(0, 0%, 5%) !important;
}
.dark-2 {
background-color: hsl(0, 0%, 7%) !important;
}
.dark-3 {
background-color: hsl(0, 0%, 8%) !important;
}
.dark-4 {
background-color: hsl(0, 0%, 9%) !important;
}
.dark-5 {
background-color: hsl(0, 0%, 11%) !important;
}
.dark-6 {
background-color: hsl(0, 0%, 12%) !important;
}
.dark-7 {
background-color: hsl(0, 0%, 14%) !important;
}
.dark-8 {
background-color: hsl(0, 0%, 15%) !important;
}
.dark-9 {
background-color: hsl(0, 0%, 16%) !important;
}
2022-05-22 02:29:30 +00:00
.dark-10 {
background-color: hsl(0, 0%, 20%) !important;
}
2021-10-26 11:43:51 +00:00
.dark-1u {
background-color: hsl(0, 0%, 5%);
}
.dark-2u {
background-color: hsl(0, 0%, 7%);
}
.dark-3u {
background-color: hsl(0, 0%, 8%);
}
.dark-4u {
background-color: hsl(0, 0%, 9%);
}
.dark-5u {
background-color: hsl(0, 0%, 11%);
}
.dark-6u {
background-color: hsl(0, 0%, 12%);
}
.dark-7u {
background-color: hsl(0, 0%, 14%);
}
.dark-8u {
background-color: hsl(0, 0%, 15%);
}
.dark-9u {
background-color: hsl(0, 0%, 16%);
}
.border-dark-7 {
border-color:hsl(0, 0%, 14%) !important;
}
/* BOX SHADOW STYLES */
2021-10-20 15:52:33 +00:00
.dark-shadow {
box-shadow: 0rem 0rem 0.5rem 0.075rem black;
2021-10-21 14:11:04 +00:00
}
2021-10-21 02:51:54 +00:00
2021-10-27 13:51:37 +00:00
.dark-shadow-sm {
box-shadow: 0rem 0rem 0.25rem 0.05rem black;
2021-10-27 13:51:37 +00:00
}
2022-05-13 00:51:21 +00:00
.atlas {
color: #fbcd49;
2022-05-13 04:00:16 +00:00
}
a {
color: #88FFFF;
2022-05-13 23:39:00 +00:00
}
a:hover {
color: #ff88ff;
}
.border-semi-light {
border-color: #aaa;
}
2022-05-16 06:50:47 +00:00
/* supposed to work in firefox but doesn't */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
2022-05-22 02:29:30 +00:00
}
2022-05-22 05:38:57 +00:00
/* Make links bold when hovered over */
.clickable:hover {
font-weight: bold;
}
2022-05-22 05:38:57 +00:00
a:hover {
font-weight: bold;
}
.button {
border-color: #fff;
2022-06-13 09:21:01 +00:00
}
.hide-scroll {
-ms-overflow-style: none; /* Internet Explorer 10+ */
scrollbar-width: none; /* Firefox */
}
.hide-scroll::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
2022-06-26 09:01:31 +00:00
2022-07-04 08:24:49 +00:00
.hppeng{
color: #20c2b6;
}
.ferricles{
color: #5be553;
}
2022-07-26 17:44:16 +00:00
.item-display-new-toggleable {
image-rendering: pixelated;
background-size: 1200% 100%;
aspect-ratio: 1/1;
}
.tome-image {
background-image: url('../media/items/common.png');
image-rendering: pixelated;
background-size: 500% 100%;
background-position: 100% 0;
aspect-ratio: 1/1;
2022-07-29 21:35:01 +00:00
}