Files
qctool/theme.css

102 lines
1.6 KiB
CSS
Raw Normal View History

2021-10-22 19:59:15 +08:00
body {
height: 100%;
2021-10-22 20:37:21 +08:00
font-size: 16px;
2022-07-16 00:43:41 +08:00
/* 禁止选择文本 */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2021-10-22 19:59:15 +08:00
}
2022-07-15 23:49:11 +08:00
a {
2021-10-22 19:59:15 +08:00
outline: none;
text-decoration: none;
color: cornflowerblue;
}
2022-07-15 23:49:11 +08:00
.item {
height: 32px;
text-align: left;
line-height: 32px;
2021-10-22 19:59:15 +08:00
margin-top: 5px;
padding-left: 10px;
background-color: #f5f5f5;
border: 1px solid #323232;
border-left-width: 5px;
2021-10-22 20:37:21 +08:00
}
.buttons {
text-align: center;
}
input {
2021-10-22 20:52:52 +08:00
width: 97%;
2021-10-22 20:37:21 +08:00
height: 32px;
2021-10-22 20:52:52 +08:00
margin-top: 5px;
2021-10-22 20:37:21 +08:00
line-height: 32px;
outline: none;
display: inline-block;
2021-10-22 20:37:21 +08:00
}
button {
height: 32px;
width: 96px;
2021-10-22 20:37:21 +08:00
text-align: center;
2021-10-22 20:52:52 +08:00
background-color: #f6f8fa;
color: #24292f;
border: 1px solid;
2021-10-22 20:37:21 +08:00
border-radius: 6px;
2021-10-22 20:52:52 +08:00
border-color: rgba(27, 31, 36, 0.15);
2022-07-15 23:49:11 +08:00
}
table {
width: 90%;
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
.pure-table {
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid #cbcbcb;
}
.pure-table caption {
color: #000;
font: italic 85%/1 arial, sans-serif;
padding: 1em 0;
text-align: center;
}
.pure-table td,
.pure-table th {
border-left: 1px solid #cbcbcb;
border-width: 0 0 0 1px;
font-size: inherit;
margin: 0;
overflow: visible;
padding: .5em 1em;
}
.pure-table thead {
background-color: #e0e0e0;
color: #000;
text-align: left;
vertical-align: bottom;
}
.pure-table td {
background-color: transparent;
}
.pure-table-odd td {
background-color: #f2f2f2;
}