Fixes CSS
parent
d5e30400d0
commit
01b2c26580
|
@ -5,6 +5,7 @@ html, body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* menu */
|
||||||
.menu-container {
|
.menu-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
@ -43,6 +44,7 @@ html, body {
|
||||||
.menu-left li a:hover, .menu-right li a:hover {
|
.menu-left li a:hover, .menu-right li a:hover {
|
||||||
background-color: #111;
|
background-color: #111;
|
||||||
}
|
}
|
||||||
|
/* /menu */
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
color: red;
|
color: red;
|
||||||
|
@ -150,6 +152,10 @@ html, body {
|
||||||
width: calc(70% + 3em);
|
width: calc(70% + 3em);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sidebar-content a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
height: 36px;
|
height: 36px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
@ -162,20 +168,26 @@ html, body {
|
||||||
background-color: lightseagreen;
|
background-color: lightseagreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-content a {
|
input[type="select"]:disabled,
|
||||||
text-decoration: none;
|
input[type="radio"]:disabled {
|
||||||
|
background-color: #e0e0e0; /* Light gray background */
|
||||||
|
color: #999999; /* Gray text */
|
||||||
|
border-color: #cccccc; /* Lighter gray border */
|
||||||
|
cursor: not-allowed; /* Shows the 'not-allowed' cursor */
|
||||||
|
opacity: 0.7; /* Makes it slightly transparent */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* pagination */
|
||||||
.pagination {
|
.pagination {
|
||||||
font-size: 0.66em;
|
font-size: 0.66em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination span {
|
.pagination span {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
/* /pagination */
|
||||||
|
|
||||||
.th-time {
|
.th-time {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
|
Loading…
Reference in New Issue