wynnbuilder-forked-for-changes/styles.css

143 lines
2.1 KiB
CSS
Raw Normal View History

2021-01-06 12:48:41 +00:00
.header {
padding: 2%;
text-align: center;
}
2021-01-08 01:02:12 +00:00
.all {
font-family: 'Nunito',sans-serif;
font-weight: 700;
}
2021-01-06 12:48:41 +00:00
.equipment {
padding: 4%;
display: grid;
grid-template-columns: repeat(4, 1fr);
2021-01-08 20:17:37 +00:00
gap: 15px;
2021-01-06 12:48:41 +00:00
grid-auto-rows: minmax(60px, auto);
}
.skillpoints {
padding: 4%;
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 5px;
grid-auto-rows: minmax(60px, auto);
}
.center {
2021-01-07 22:44:52 +00:00
text-align: center;
}
2021-01-08 01:02:12 +00:00
.right {
text-align: right;
2021-01-07 22:44:52 +00:00
}
2021-01-08 01:02:12 +00:00
.left {
2021-01-07 22:44:52 +00:00
text-align: left;
2021-01-06 12:48:41 +00:00
}
2021-01-07 00:04:16 +00:00
.build{
2021-01-07 08:11:54 +00:00
padding: 1%;
2021-01-07 00:04:16 +00:00
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
grid-auto-rows: minmax(60px, auto);
2021-01-08 01:02:12 +00:00
width: 98%;
2021-01-07 08:11:54 +00:00
}
2021-01-07 08:45:41 +00:00
.build-helmet, .build-chestplate, .build-leggings, .build-boots, .build-ring1, .build-ring2, .build-bracelet, .build-necklace, .build-weapon, .build-order {
2021-01-08 01:02:12 +00:00
color: #aaa;
background: #110110;
2021-01-07 08:11:54 +00:00
border: 2px solid black;
border-radius: 3px;
2021-01-08 01:02:12 +00:00
width: 100%;
}
.itemcenter {
text-align: center;
margin-bottom: 16px;
}
.itemleft {
text-align: left;
margin-bottom: 16px;
}
.itemtable {
margin: 2px 2%;
width: 96%;
margin-bottom: 16px;
}
.itemp {
margin: 2px 2%;
padding: 0;
}
.positive {
color: #5f5;
/*text-shadow: 2px 2px 0 #153f15;*/
}
.negative {
color: #f55;
/*text-shadow: 2px 2px 0 #1f1515;*/
}
.Earth {
color: #0a0;
/*text-shadow: 2px 2px 0 #002a00;*/
}
2021-01-08 01:14:56 +00:00
.Earth:before {
content: "\2724" ' ';
}
2021-01-08 01:02:12 +00:00
.Thunder {
color: #ff5;
/*text-shadow: 2px 2px 0 #3f3f15;*/
}
2021-01-08 01:14:56 +00:00
.Thunder:before {
content: "\2726" ' ';
}
2021-01-08 01:02:12 +00:00
.Water {
color: #5ff;
/*text-shadow: 2px 2px 0 #153f3f;*/
}
2021-01-08 01:14:56 +00:00
.Water:before {
content: "\2749" ' ';
}
2021-01-08 01:02:12 +00:00
.Fire {
color: #f55;
/*text-shadow: 2px 2px 0 #1f1515;*/
}
2021-01-08 01:14:56 +00:00
.Fire:before {
content: "\2739" ' ';
}
2021-01-08 01:02:12 +00:00
.Air {
color: #fff;
/*text-shadow: 2px 2px 0 #3f3f3f;*/
}
2021-01-08 01:14:56 +00:00
.Air:before {
content: "\274b" ' ';
}
2021-01-08 01:02:12 +00:00
.Neutral {
color: #fa0;
/*text-shadow: 2px 2px 0 #2a2a00;*/
2021-01-07 06:41:41 +00:00
}
2021-01-08 01:14:56 +00:00
.Health {
color: #a00;
/*text-shadow: 2px 2px 0 #2a0000;*/
}
.Health:before {
content: "\2764" ' ';
}
2021-01-08 20:21:31 +00:00
.skpInput, .skplabel {
display: block;
margin: auto;
}