css
This commit is contained in:
parent
9ea9498b72
commit
fb1bf2b6e7
@ -22,9 +22,9 @@
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
margin-bottom: 15px;
|
||||
/* box-shadow: 5px 5px 5px rgb(68, 68, 68); */
|
||||
border-radius: 10px;
|
||||
vertical-align: middle;
|
||||
top: 1vh;
|
||||
}
|
||||
|
||||
.clip-listing:hover {
|
||||
@ -44,8 +44,12 @@
|
||||
/* max-height: fit-content; */
|
||||
}
|
||||
|
||||
.listing-element > * {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#title {
|
||||
max-width: 40%;
|
||||
max-width: 45%;
|
||||
}
|
||||
|
||||
#uploader {
|
||||
@ -57,7 +61,7 @@
|
||||
}
|
||||
|
||||
#duration {
|
||||
max-width: 10%;
|
||||
max-width: 5%;
|
||||
}
|
||||
|
||||
.thumbnail {
|
||||
|
@ -2,4 +2,27 @@
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.user {
|
||||
position: relative;
|
||||
height: 4vh;
|
||||
width: 75%;
|
||||
margin: auto;
|
||||
background-color: var(--primary-color);
|
||||
top: 1vh;
|
||||
border: solid 2px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.user > * {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.delete-btn {
|
||||
background-color: rgb(255, 98, 98);
|
||||
border-radius: 5px;
|
||||
border: solid 1px rgb(255, 139, 139);
|
||||
height: 3vh;
|
||||
font-weight: 800;
|
||||
}
|
46
client/src/css/Structures.css
Normal file
46
client/src/css/Structures.css
Normal file
@ -0,0 +1,46 @@
|
||||
.dropdown {
|
||||
|
||||
}
|
||||
|
||||
.dropdown-list {
|
||||
display: none;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
background-color: var(--lighter-gray);
|
||||
min-width: 10vw;
|
||||
min-height: 15vh;
|
||||
max-height: 35vh;
|
||||
overflow-y: auto;
|
||||
/* left: 50%; */
|
||||
/* top: 3vh; */
|
||||
/* transform: translate(-50%); */
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-list {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
cursor: pointer;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
width: inherit;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.dropdown-item:hover {
|
||||
background-color: var(--light-orange);
|
||||
}
|
||||
|
||||
.dropdown-item > * {
|
||||
flex: 1;
|
||||
cursor: inherit;
|
||||
height: inherit;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.dropdown input {
|
||||
height: 1.6vh;
|
||||
}
|
Loading…
Reference in New Issue
Block a user