1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
botw-hundo-dupl/src/App.css

79 lines
1 KiB
CSS
Raw Normal View History

2022-06-19 03:52:08 -07:00
h1 {
margin: 0
}
@font-face {
font-family: CalamitySans;
src: url("assets/Calamity-Regular.otf") format("opentype");
}
.Calamity {
font-family: CalamitySans;
}
.CommandItemSelected {
background-color: #eeeeee;
}
.CommandItemContextSelected {
background-color: #eeaaaa;
}
2022-06-20 22:47:31 -07:00
.CommandItemComment{
color: green;
font-size: 10pt;
2022-06-19 03:52:08 -07:00
}
.CommandItem {
padding: 2px 2px 2px 10px;
cursor: pointer;
}
.CommandItem:hover {
2022-06-20 22:47:31 -07:00
background-color: #eeeeee;
2022-06-19 03:52:08 -07:00
}
.InputError {
background-color: #eeaaaa;
}
2022-06-20 20:28:09 -07:00
.ItemSlot {
margin: 4px;
width: 64px;
height: 64px;
background-color: #333333;
box-sizing: content-box;
display: inline-block;
}
.ItemSlotBroken {
background-color: #660000;
}
.ItemSlotSave {
background-color: #003300;
}
.ItemSlotEquipped {
background-color: #0088ff;
}
.ItemImage {
border: 1px solid #999999;
box-sizing: border-box;
margin:1px;
width:62px;
height:62px;
display:inline-block;
}
.ItemCount {
font-size: 10pt;
position:relative;
top:-22px;
left:8px;
color:#eeeeee;
float: left;
2022-06-20 22:47:31 -07:00
}