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

126 lines
1.7 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-23 04:51:26 -07:00
border: 1px solid black;
}
.CommandInput {
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px solid #0074d9;
color: #b7f1ff;
text-shadow: 0 0 5px #3aa0ff,0 0 5px #3aa0ff,0 0 5px #3aa0ff;
}
.CommandInput:focus-visible {
border-color: #b7f1ff;
2022-06-19 03:52:08 -07:00
}
.InputError {
2022-06-23 04:51:26 -07:00
color: #ff3333;
text-shadow: 0 0 5px #ee7777,0 0 5px #ee7777,0 0 5px #ee7777;
border-bottom: 2px solid #dd0000;
}
.InputError:focus-visible {
border-bottom: 2px solid #ff3333;
2022-06-19 03:52:08 -07:00
}
2022-06-20 20:28:09 -07:00
.ItemSlot {
margin: 4px;
width: 64px;
height: 64px;
2022-06-23 04:51:26 -07:00
background-color: #333333bb;
2022-06-20 20:28:09 -07:00
box-sizing: content-box;
display: inline-block;
}
.ItemSlotBroken {
background-color: #660000;
}
2022-06-23 04:51:26 -07:00
.GameDataBackground {
2022-06-20 20:28:09 -07:00
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
}
2022-06-22 21:30:21 -07:00
h3.ListHeader {
margin: 0;
padding: 10px;
2022-06-23 04:51:26 -07:00
}
h4.Reference {
margin: 0;
color: #cccccc;
}
p.Reference {
padding-left: 20px;
}
p.Example {
color:#eeee00;
}
h3.Reference {
margin-top: 30px;
2022-06-23 07:32:45 -07:00
margin-bottom: 0;
}
h3.Reference2 {
margin-top: 0;
margin-bottom: 0;
2022-06-23 04:51:26 -07:00
}