Easy-Session-Manager/src/styles/styles.css

115 lines
1.8 KiB
CSS

body {
width: 800px;
height: 600px;
overflow: hidden;
}
ul, li { list-style: none; }
input[type=image] {
width: 2.5em;
height: 2.5em;
padding: 0.4em;
background-color: #ffffff;
color: #000000;
}
input[type=image]:hover {
cursor: pointer;
background-color: #a3b83b;
color: #ffffff;
}
#savedSessions {
width: 85%;
height: 450px;
min-height: 450px;
max-height: 450px;
overflow-x: hidden;
overflow-y: auto;
margin: 0em auto;
}
#editSelectionContainer {
width: 100%;
height: auto;
white-space: nowrap;
display: block;
overflow-x: auto;
}
#editSelectionContainer > ul {
display: block;
overflow: auto;
}
#editSelectionContainer > ul > li {
float: left;
}
#inputId {
display: none;
}
#selectAll {
margin-bottom: 1.5em;
}
#lableTag {
top: 48%;
margin: 0 auto;
color: rgba(255, 255, 255, 0.5);
}
/* Overide sweetalert modal size */
.swal-modal{
top: 2em !important;
width: 650px !important;
height: auto !important;
}
.collection {
padding-top: 1em;
padding-bottom: 1em;
}
.container {
width: 100%;
height: 100%;
background-image: url('../images/icons/import.png');
background-repeat: no-repeat;
background-position: center;
text-align: center;
background-color: rgba(41, 95, 115, 0.85);
transition: 0.6s;
}
.container:hover {
transition: 0.6s;
background-color: rgba(41, 95, 115, 0.65);
cursor: pointer;
}
.sessionLI {
background-color: #0a1827;
color: #ffffff;
margin: 1em 0em;
padding: 1.5em;
text-align: center;
}
.sessionLI:hover {
background-color: #1e4573;
cursor: pointer;
}
.selected {
background-color: #a3b83b;
box-shadow: 0px 5px 5px 5px #444444;
}
.icon {
width: 25px;
height: 25px;
}