Tab-Search-and-Manage/src/css/tabsSearch.css

165 lines
3.0 KiB
CSS
Raw Normal View History

2020-01-31 18:46:44 +00:00
/* System */
html, body { overflow-x: hidden; }
2020-01-31 18:46:44 +00:00
/* IDs */
2018-04-20 06:06:32 +00:00
#masterContainer, div[id*="listZone"], .block {
display: block;
padding: 1em;
}
#masterContainer {
background: radial-gradient(circle,#000000,#676767);
2018-04-20 06:06:32 +00:00
width: 710px;
height: auto;
}
2017-12-16 04:09:28 +00:00
2018-04-20 06:06:32 +00:00
#controls {
position: fixed;
2020-01-31 18:46:44 +00:00
z-index: 999;
2018-04-20 06:06:32 +00:00
top: 0;
background: rgba(255,255,255, 1);
margin-left: 1.4em;
2018-04-20 06:06:32 +00:00
}
2020-06-30 21:36:00 +00:00
#tabControls,
#tabControls2 {
2019-05-04 23:12:22 +00:00
position: fixed;
2020-01-31 18:46:44 +00:00
z-index: 555;
2020-06-30 21:36:00 +00:00
width: 145px;
height: 32px;
2019-05-04 23:12:22 +00:00
padding: 0em 0.4em 0.4em 0.4em;
background-color: rgba(9,107,120, 0.85);
color: rgb(255,255,255);
}
2020-06-30 21:36:00 +00:00
#tabControls2 {
height: 152px;
width: auto;
}
2019-05-04 23:12:22 +00:00
#bottomControls {
2018-05-06 01:02:50 +00:00
position: fixed;
bottom: 0;
margin-left: 25%;
2018-05-06 01:02:50 +00:00
}
2019-05-04 23:12:22 +00:00
#bottomControls input {
font-size: 2em;
2018-05-06 01:02:50 +00:00
background-color: rgba(79, 186, 70, 1);
color: rgba(255,255,255,1);
width: 1em;
height: 1em;
padding: 0.1em;
2018-05-06 01:02:50 +00:00
}
2019-05-04 23:12:22 +00:00
#bottomControls input:hover {
background-color: rgba(152, 152, 152, 1);
2018-05-06 01:02:50 +00:00
color: rgba(0,0,0,1);
cursor: pointer;
border-style: none;
}
2018-04-20 06:06:32 +00:00
#searchBar, #errorZone {
width: 630px;
2017-12-16 04:09:28 +00:00
background: rgb(255,255,255);
2018-04-20 06:06:32 +00:00
color: rgba(9,107,120, 0.85);
2017-12-16 04:09:28 +00:00
text-align: center;
border-color: rgba(0,0,0, 0.85);
border-style: solid;
2018-04-20 06:06:32 +00:00
}
#searchBar {
2017-12-16 04:09:28 +00:00
padding: 0.5em;
2018-04-20 06:06:32 +00:00
font-size: 2em;
}
#errorZone {
color: red;
border-style: dotted;
margin: 6em 0em 2em 2em;
2018-05-06 01:02:50 +00:00
padding: 0.5em 0em 0.5em 0em;
2018-04-20 06:06:32 +00:00
}
#listZone {
background-color: rgba(255,255,255, 1);
2020-01-31 18:46:44 +00:00
max-height: 450px;
overflow: auto;
scroll-snap-type: y mandatory;
2018-04-20 06:06:32 +00:00
width: 630px;
margin: 1.5em;
2017-12-16 04:09:28 +00:00
}
2020-01-31 18:46:44 +00:00
/* Classes */
.block, .windowIdHeaders {
2017-12-16 04:09:28 +00:00
display: block;
clear: right;
float: left;
background-color: rgba(9,107,120, 0.85);
color: rgb(255,255,255);
}
.block {
background-repeat: no-repeat;
background-size: 6em;
background-position: center;
2018-04-20 06:06:32 +00:00
width: 125px;
height: 125px;
2017-12-16 04:09:28 +00:00
overflow: hidden;
2018-04-20 06:06:32 +00:00
margin: 1.5em;
}
2018-04-20 06:06:32 +00:00
.block:hover {
cursor: pointer;
background-color: rgba(110, 194, 45, 0.94);
color: rgba(255, 255, 255, 0.84);
2017-12-16 04:09:28 +00:00
}
.windowIdHeaders {
width: 100%;
font-size: 2em;
text-align: center;
}
2020-01-31 18:46:44 +00:00
.scroller {
scrollbar-color: #00000084 #ffffff64;
scrollbar-width: thin;
}
2020-06-30 21:36:00 +00:00
/* Control defaults */
.closeImg, .hiderImg, .muterImg, .dupeImg, .popoutImg {
2019-05-04 23:12:22 +00:00
padding: 0.2em;
width: 28px;
height: 28px;
2019-05-04 23:12:22 +00:00
float: left;
2017-12-16 04:09:28 +00:00
}
2020-06-30 21:36:00 +00:00
/* Control 2 imgs set to vertical */
.closeImg {
clear: both;
}
.hiderImg, .muterImg, .dupeImg, .popoutImg {
float: right;
}
.pTagTitleText {
background-color: rgba(63, 63, 63, 0.64);
line-height: 1.5em;
2019-05-04 23:12:22 +00:00
margin-top: 4.5em;
height: 3em;
overflow: hidden;
text-overflow: ellipsis;
2018-04-20 06:06:32 +00:00
}
2020-06-30 21:36:00 +00:00
.hiderImg:hover, .popoutImg:hover,
.muterImg:hover, .dupeImg:hover {
background-color: rgba(30, 129, 22, 1);
}
.block-focused { background-color: rgba(53, 103, 14, 0.8); }
.closeImg:hover { background-color: rgba(196, 11, 11, 1); }
.hiddenBGColor { background-color: rgba(152, 152, 152, 0.8); }