Tip of the Day
Long pressing an item opens multi-selection options in the inventory.

MediaWiki:Gadget-DryCalc.css: Difference between revisions

From Walkscape Walkthrough
Created page with ".ws-drycalc-card { border: 1px solid rgba(0,0,0,0.15); border-radius: 12px; padding: 12px 14px; max-width: 520px; background: rgba(255,255,255,0.7); } .ws-drycalc-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; } .ws-drycalc-row { display: flex; align-items: center; gap: 10px; margin: 8px 0; } .ws-drycalc-label { width: 160px; font-weight: 600; } .ws-drycalc-input { width: 180px; padding: 6px 8px; border-radius: 8px;..."
 
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
.ws-drycalc-card {
.ws-dropcalc-card {
   border: 1px solid rgba(0,0,0,0.15);
   border: 1px solid rgba(0,0,0,0.15);
   border-radius: 12px;
   border-radius: 12px;
   padding: 12px 14px;
   padding: 12px 14px;
   max-width: 520px;
   max-width: 560px;
   background: rgba(255,255,255,0.7);
   background: rgba(255,255,255,0.7);
}
}


.ws-drycalc-title {
.ws-dropcalc-title {
   font-size: 16px;
   font-size: 16px;
   font-weight: 700;
   font-weight: 700;
Line 13: Line 13:
}
}


.ws-drycalc-row {
.ws-dropcalc-row {
   display: flex;
   display: flex;
   align-items: center;
   align-items: flex-start;
   gap: 10px;
   gap: 10px;
   margin: 8px 0;
   margin: 8px 0;
}
}


.ws-drycalc-label {
.ws-dropcalc-label {
   width: 160px;
   width: 190px;
   font-weight: 600;
   font-weight: 600;
  padding-top: 6px;
}
}


.ws-drycalc-input {
.ws-dropcalc-input {
   width: 180px;
   width: 220px;
   padding: 6px 8px;
   padding: 6px 8px;
   border-radius: 8px;
   border-radius: 8px;
Line 32: Line 33:
}
}


.ws-drycalc-inlinewrap {
.ws-dropcalc-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.ws-dropcalc-hint {
  font-size: 12px;
  opacity: 0.8;
}
 
.ws-dropcalc-radio-wrap {
   display: flex;
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 8px;
   gap: 10px;
  padding-top: 4px;
}
}


.ws-drycalc-inline {
.ws-dropcalc-radio {
   opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
   user-select: none;
}
}


.ws-drycalc-out {
.ws-dropcalc-out {
   margin-top: 12px;
   margin-top: 12px;
   border-top: 1px solid rgba(0,0,0,0.12);
   border-top: 1px solid rgba(0,0,0,0.12);
Line 48: Line 65:
}
}


.ws-drycalc-metric {
.ws-dropcalc-metric {
   display: flex;
   display: flex;
   justify-content: space-between;
   justify-content: space-between;
Line 55: Line 72:
}
}


.ws-drycalc-k {
.ws-dropcalc-k {
   opacity: 0.9;
   opacity: 0.9;
}
}


.ws-drycalc-v {
.ws-dropcalc-v {
   font-weight: 700;
   font-weight: 700;
   white-space: nowrap;
   white-space: nowrap;
}
}


.ws-drycalc-subtitle {
.ws-dropcalc-subtitle {
   margin-top: 10px;
   margin-top: 10px;
   font-weight: 700;
   font-weight: 700;
}
}


.ws-drycalc-milestones {
.ws-dropcalc-milestones {
   display: flex;
   display: flex;
   flex-wrap: wrap;
   flex-wrap: wrap;
Line 76: Line 93:
}
}


.ws-drycalc-chip {
.ws-dropcalc-chip {
   border: 1px solid rgba(0,0,0,0.15);
   border: 1px solid rgba(0,0,0,0.15);
   border-radius: 999px;
   border-radius: 999px;
Line 84: Line 101:
}
}


.ws-drycalc-warn {
.ws-dropcalc-warn {
   padding: 8px 0;
   padding: 6px 0;
   font-weight: 600;
   font-weight: 600;
}
.ws-dropcalc-flavour {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  font-style: italic;
}
.ws-dropcalc-flavour div + div {
  margin-top: 4px;
}
}

Latest revision as of 01:57, 29 December 2025

.ws-dropcalc-card {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 12px 14px;
  max-width: 560px;
  background: rgba(255,255,255,0.7);
}

.ws-dropcalc-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ws-dropcalc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
}

.ws-dropcalc-label {
  width: 190px;
  font-weight: 600;
  padding-top: 6px;
}

.ws-dropcalc-input {
  width: 220px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
}

.ws-dropcalc-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ws-dropcalc-hint {
  font-size: 12px;
  opacity: 0.8;
}

.ws-dropcalc-radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.ws-dropcalc-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  user-select: none;
}

.ws-dropcalc-out {
  margin-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 10px;
}

.ws-dropcalc-metric {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.ws-dropcalc-k {
  opacity: 0.9;
}

.ws-dropcalc-v {
  font-weight: 700;
  white-space: nowrap;
}

.ws-dropcalc-subtitle {
  margin-top: 10px;
  font-weight: 700;
}

.ws-dropcalc-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.ws-dropcalc-chip {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
  background: rgba(0,0,0,0.03);
}

.ws-dropcalc-warn {
  padding: 6px 0;
  font-weight: 600;
}

.ws-dropcalc-flavour {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  font-style: italic;
}

.ws-dropcalc-flavour div + div {
  margin-top: 4px;
}