This commit is contained in:
Eason010212
2023-08-31 22:12:44 +08:00
parent b395707a01
commit aa0c890f2c
2 changed files with 35 additions and 4 deletions

View File

@@ -186,6 +186,12 @@ input[type="search"]{
overflow: auto;
height: calc(100vh - 4.375rem);
}
.grid2 {
position: relative;
overflow: auto;
height: calc(100vh - 4.375rem);
}
@media screen and (max-width: 800px) {
.grid {
position: relative;
@@ -193,6 +199,12 @@ input[type="search"]{
overflow-y: scroll;
height: calc(100vh - 4.375rem);
}
.grid2 {
position: relative;
width:100vw;
overflow-y: scroll;
height: calc(100vh - 4.375rem);
}
}
@keyframes fade-in {
@@ -495,4 +507,18 @@ input{
padding:10px;
padding-top:0;
padding-bottom: 0;
}
.ui-popup-backdrop{
pointer-events: none;
}
.button-7colors {
background: conic-gradient(#e74a3b, #fd7e14, #f6c23e, #1cc88a, #36b9cc, #4e73df, #9b59b6, #e74a3b);
border: none;
}
.button-7colors:hover{
filter: brightness(0.95);
}

View File

@@ -226,15 +226,15 @@
}
.mid_screen{
width:11rem;
height:9rem;
line-height:1rem;
width:calc(100% - 3rem);
height:calc(100% - 5rem);
line-height:1.2rem;
padding:0.5rem;
word-break:break-all;
background-color: #eeeeee;
color:black;
font-weight:bold;
font-size: 0.8rem;
font-size: 1rem;
border-radius:10px;
border:solid gray 2px;
}
@@ -316,4 +316,9 @@
content: '';
-webkit-transform: rotate3d(0,0,1,22.5deg);
transform: rotate3d(0,0,1,22.5deg);
}
.cameraDiv{
width: calc(100% - 2rem);
height: calc(100% - 4.5rem);
}