color
This commit is contained in:
parent
d445b891c8
commit
b537517baf
|
@ -211,7 +211,7 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="filters">
|
<section class="filters">
|
||||||
<h3>Filters</h3>
|
<h3>Filters (click to add)</h3>
|
||||||
<div class="inner-filters">
|
<div class="inner-filters">
|
||||||
<div class="filter-picker">
|
<div class="filter-picker">
|
||||||
<FilterPicker select={"video"} />
|
<FilterPicker select={"video"} />
|
||||||
|
@ -247,10 +247,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
border: 1px solid #999;
|
/* border: 1px solid #999; */
|
||||||
|
/* box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.7); */
|
||||||
|
border: 1px solid var(--b1);
|
||||||
|
box-shadow: 7px 7px var(--b2);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: rgb(245, 245, 245);
|
background-color: rgb(245, 245, 245);
|
||||||
box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.7);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
|
|
|
@ -92,7 +92,8 @@
|
||||||
.filter-holder {
|
.filter-holder {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 1px solid #999;
|
/* border: 1px solid #999; */
|
||||||
|
border: 1px solid var(--b2);
|
||||||
/* box-shadow: 5px 5px 0px #000; */
|
/* box-shadow: 5px 5px 0px #000; */
|
||||||
}
|
}
|
||||||
.filter-holder,
|
.filter-holder,
|
||||||
|
@ -114,7 +115,8 @@
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
.param-holder {
|
.param-holder {
|
||||||
border-top: 1px solid #999;
|
/* border-top: 1px solid #999; */
|
||||||
|
border-top: 1px solid var(--b2);
|
||||||
padding: 10px 0px;
|
padding: 10px 0px;
|
||||||
}
|
}
|
||||||
.param-holder:last-child {
|
.param-holder:last-child {
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 1px solid #999;
|
border: 1px solid var(--b1);
|
||||||
}
|
}
|
||||||
.type {
|
.type {
|
||||||
color: #999;
|
color: #999;
|
||||||
|
@ -87,7 +87,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.filter {
|
.filter {
|
||||||
border-bottom: 1px solid #000;
|
border-bottom: 1px solid var(--b1);
|
||||||
padding: 10px 0px;
|
padding: 10px 0px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
:root {
|
:root {
|
||||||
|
--b1: #004dff;
|
||||||
|
--b2: #f19696b3;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
Loading…
Reference in New Issue