67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
Plaintext
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: transparent;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.mcui {
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.mcui-Panel {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mcui-Text {
|
|
background-color: transparent;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.mcui-Button {
|
|
text-align: center;
|
|
cursor: pointer;
|
|
border-width: 1px;
|
|
border-bottom-width: 3px;
|
|
border-color: rgba(150, 190, 255, 200);
|
|
}
|
|
|
|
.mcui-Button.mcui-disabled {
|
|
cursor: default;
|
|
}
|
|
|
|
.mcui-Image {
|
|
background-color: transparent;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.mcui-node-Button {
|
|
background-color: rgba(46, 87, 148, 0.940);
|
|
border-top-color: rgba(117, 144, 184, 1.000);
|
|
border-left-color: rgba(79, 114, 165, 1.000);
|
|
border-right-color: rgba(27, 50, 86, 1.000);
|
|
border-bottom-color: rgba(27, 50, 86, 1.000);
|
|
}
|
|
.mcui-node-Button:hover {
|
|
background-color: rgba(79, 114, 165, 0.970);
|
|
border-top-color: rgba(132, 156, 192, 1.000);
|
|
}
|
|
.mcui-node-Button:active {
|
|
background-color: rgba(36, 68, 115, 0.980);
|
|
border-top-width: 3px;
|
|
border-bottom-width: 1px;
|
|
border-top-color: rgba(27, 50, 86, 1.000);
|
|
border-left-color: rgba(27, 50, 86, 1.000);
|
|
border-right-color: rgba(117, 144, 184, 1.000);
|
|
border-bottom-color: rgba(117, 144, 184, 1.000);
|
|
}
|
|
.mcui-node-Button.mcui-disabled,
|
|
.mcui-node-Button.mcui-disabled:hover,
|
|
.mcui-node-Button.mcui-disabled:active {
|
|
background-color: rgba(46, 48, 54, 0.720);
|
|
color: rgba(140, 148, 163, 1.000);
|
|
border-width: 1px;
|
|
border-color: rgba(77, 82, 92, 1.000);
|
|
}
|