2021-01-11 12:12:45 +00:00
|
|
|
.build-overall-container {
|
|
|
|
grid-column:3;
|
|
|
|
}
|
|
|
|
.spell-info-container {
|
|
|
|
grid-column:4;
|
|
|
|
}
|
2021-01-19 01:57:26 +00:00
|
|
|
.sticky-box {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
}
|
2021-01-11 12:12:45 +00:00
|
|
|
.summary {
|
2021-01-19 10:12:36 +00:00
|
|
|
padding: 2% 2% 0%;
|
2021-01-11 12:12:45 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1.25fr 1.25fr 1fr 1fr;
|
|
|
|
grid-auto-columns: minmax(200px, auto);
|
|
|
|
gap: 5px;
|
|
|
|
grid-auto-rows: minmax(60px, auto);
|
|
|
|
}
|
2021-01-18 01:26:39 +00:00
|
|
|
.container {
|
|
|
|
padding: 2% 4% 4%;
|
|
|
|
display: grid;
|
2021-01-20 05:59:17 +00:00
|
|
|
grid-template-columns: 0.85fr 0.5fr 0.5fr;
|
2021-01-18 01:26:39 +00:00
|
|
|
grid-auto-columns: minmax(200px, auto);
|
|
|
|
gap: 5px;
|
|
|
|
grid-auto-rows: minmax(60px, auto);
|
|
|
|
}
|
|
|
|
.ingredients {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
grid-auto-columns: minmax(200px, auto);
|
|
|
|
gap: 5px;
|
|
|
|
grid-auto-rows: minmax(60px, auto);
|
|
|
|
}
|
2021-01-11 12:12:45 +00:00
|
|
|
|
|
|
|
.build, .spells, .misc {
|
|
|
|
padding: 2%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
gap: 20px;
|
|
|
|
grid-auto-rows: minmax(60px, auto);
|
|
|
|
width: 94%;
|
|
|
|
background: #121516;
|
|
|
|
}
|
|
|
|
|
|
|
|
.iteminput {
|
2021-01-20 01:29:58 +00:00
|
|
|
width: 11vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.powderinput {
|
|
|
|
width: 4vw;
|
2021-01-11 12:12:45 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 14:18:14 +00:00
|
|
|
.skpInput, .idInput {
|
2021-01-19 10:12:36 +00:00
|
|
|
width: 90%;
|
|
|
|
height: 7vw;
|
|
|
|
max-height: 30px;
|
2021-01-11 12:12:45 +00:00
|
|
|
}
|
2021-01-19 10:36:24 +00:00
|
|
|
|
|
|
|
.wide-space {
|
|
|
|
height: 8em;
|
|
|
|
}
|
2021-01-11 12:12:45 +00:00
|
|
|
|
2021-01-19 10:53:05 +00:00
|
|
|
.idLabel, .skpLabel, .idDesc, .skpDesc {
|
|
|
|
font-size: 80%;
|
2021-01-11 12:12:45 +00:00
|
|
|
}
|
2021-01-14 02:13:41 +00:00
|
|
|
|
2021-01-19 10:53:05 +00:00
|
|
|
.title{
|
|
|
|
text-align: center;
|
|
|
|
font-size: 150%;
|
|
|
|
}
|
|
|
|
.smalltitle{
|
|
|
|
text-align: center;
|
|
|
|
font-size: 125%;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-narrow {
|
|
|
|
background-color: #666;
|
|
|
|
border: 2px solid #444;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #ddd;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: 'Nunito',sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 90%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
background-color: #666;
|
|
|
|
border: 2px solid #444;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: #ddd;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: 'Nunito',sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 120%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|