2019-03-01 07:20:25 +00:00
|
|
|
body {
|
|
|
|
width: 450px;
|
|
|
|
height: 520px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2018-11-11 09:04:55 +00:00
|
|
|
ul, li { list-style: none; }
|
|
|
|
|
2019-04-06 03:36:25 +00:00
|
|
|
input[type=image] {
|
|
|
|
width: 2.5em;
|
|
|
|
height: 2.5em;
|
|
|
|
padding: 0.4em;
|
|
|
|
background-color: #ffffff;
|
|
|
|
color: #000000;
|
2018-11-11 09:04:55 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 03:36:25 +00:00
|
|
|
input[type=image]:hover {
|
2018-11-11 09:04:55 +00:00
|
|
|
cursor: pointer;
|
2019-04-06 03:36:25 +00:00
|
|
|
background-color: #a3b83b;
|
|
|
|
color: #ffffff;
|
2018-11-11 09:04:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-19 03:29:20 +00:00
|
|
|
#savedSessions {
|
2019-04-06 03:36:25 +00:00
|
|
|
height: 365px;
|
|
|
|
min-height: 365x;
|
|
|
|
max-height: 365px;
|
2019-01-19 03:29:20 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2019-04-06 03:36:25 +00:00
|
|
|
margin-bottom: 0.6em;
|
|
|
|
margin-top: 0.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editSelectionContainer {
|
|
|
|
height: 350px;
|
|
|
|
min-height: 350x;
|
|
|
|
max-height: 350px;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editSelectionContainer > ul > li {
|
|
|
|
float: left;
|
2019-01-19 03:29:20 +00:00
|
|
|
}
|
|
|
|
|
2018-11-11 21:12:26 +00:00
|
|
|
#inputId {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-04-06 03:36:25 +00:00
|
|
|
#selectAll {
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
|
2018-11-12 04:00:25 +00:00
|
|
|
#lableTag {
|
|
|
|
top: 48%;
|
|
|
|
margin: 0 auto;
|
|
|
|
color: rgba(255, 255, 255, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2019-04-06 03:36:25 +00:00
|
|
|
.sessionLI {
|
|
|
|
background-color: #0a1827;
|
|
|
|
color: #ffffff;
|
|
|
|
margin: 1em 0em;
|
|
|
|
padding: 1.5em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sessionLI:hover {
|
|
|
|
background-color: #1e4573;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-11-11 09:04:55 +00:00
|
|
|
.selected {
|
|
|
|
background-color: #a3b83b;
|
|
|
|
box-shadow: 0px 5px 5px 5px #444444;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
}
|