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

120 lines
1.7 KiB
CSS
Raw Normal View History

body {
2019-07-15 17:45:54 +00:00
width: 800px;
height: 600px;
overflow: hidden;
}
2020-03-02 02:36:44 +00:00
ul, li {
list-style: none;
}
li {
2020-08-25 01:54:08 +00:00
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
2020-03-02 02:36:44 +00:00
}
2018-11-11 09:04:55 +00:00
2020-02-29 21:30:44 +00:00
/* IDs */
#master-row {
padding: 2em;
}
#master-left-column {
background-color:grey
}
#master-right-column {
padding: 0em 4em;
}
#master-left-column > li > button {
width: 14em;
}
#master-gutter {
position: absolute;
width: 100%;
bottom: 0.5em;
max-height: 6em;
overflow: auto;
}
#savedSessions {
2020-02-29 21:30:44 +00:00
width: 100%;
2019-07-15 17:45:54 +00:00
height: 450px;
min-height: 450px;
max-height: 450px;
overflow-x: hidden;
overflow-y: auto;
2019-07-15 17:45:54 +00:00
margin: 0em auto;
}
2020-02-29 21:30:44 +00:00
#editList,
#saveList,
#loadList {
max-height: 250px;
overflow: auto;
}
2018-11-11 21:12:26 +00:00
#inputId {
display: none;
}
2020-03-02 02:54:44 +00:00
/* Classes */
/* Plugin page */
.collection {
padding-top: 1em;
padding-bottom: 1em;
}
2020-03-02 02:54:44 +00:00
.sessionLI {
background-color: #0a1827;
color: #ffffff;
margin: 1em 0em;
padding: 1.5em;
text-align: center;
2018-11-12 04:00:25 +00:00
}
2020-03-02 02:54:44 +00:00
.sessionLI:hover {
background-color: #1e4573;
cursor: pointer;
}
2020-02-29 21:30:44 +00:00
2020-03-02 02:54:44 +00:00
.selected {
background-color: #a3b83b;
box-shadow: 0px 5px 5px 5px #444444;
}
2020-02-29 21:30:44 +00:00
.modal {
width: 650px;
height: auto;
}
.scroller {
scrollbar-color: #00000084 #ffffff64;
scrollbar-width: thin;
2019-07-15 17:45:54 +00:00
}
2020-03-02 02:54:44 +00:00
/* Import page */
.import-container {
2018-11-12 04:00:25 +00:00
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;
}
2020-03-02 02:54:44 +00:00
.import-container:hover {
2018-11-12 04:00:25 +00:00
transition: 0.6s;
background-color: rgba(41, 95, 115, 0.65);
cursor: pointer;
}