mirror of https://github.com/Ombi-app/Ombi
commit
aac55d6a52
@ -1,5 +1,87 @@
|
||||
@import "~styles/variables.scss";
|
||||
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 80%;
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
//Kinda restyled the entire calendar
|
||||
::ng-deep .dark .fc th {
|
||||
background-color:#545454 !important;
|
||||
color: #FFF;
|
||||
border: 1px solid #303030;
|
||||
}
|
||||
|
||||
::ng-deep .dark .fc td.ui-widget-content{
|
||||
background-color:#424242 !important;
|
||||
color: #FFF;
|
||||
border: 1px solid #303030;
|
||||
}
|
||||
|
||||
::ng-deep .dark .fc td.fc-head-container {
|
||||
border: 1px solid #303030;
|
||||
}
|
||||
|
||||
::ng-deep .dark fc-day-grid-event fc-h-event fc-event fc-start fc-end{
|
||||
background:$accent-dark !important;
|
||||
}
|
||||
|
||||
::ng-deep .ui-button {
|
||||
margin-top:10px !important;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
padding: 8px;
|
||||
border: 1px solid rgb(221, 221, 221) !important;
|
||||
display: inline-block;
|
||||
transition: all 0.4s ease 0s;
|
||||
background-color: $accent !important;
|
||||
}
|
||||
|
||||
::ng-deep .dark .ui-button {
|
||||
background-color: $accent-dark !important;
|
||||
border: 1px solid #494949 !important;
|
||||
color: #494949 !important;
|
||||
}
|
||||
|
||||
::ng-deep .dark .ui-button:enabled:hover {
|
||||
color: #303030 !important;
|
||||
background: $accent-dark !important;
|
||||
border-color: $accent-dark !important;
|
||||
transition: all 0.4s ease 0s;
|
||||
}
|
||||
|
||||
::ng-deep .input-group-addon{
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
::ng-deep .fc .fc-event{
|
||||
background: $accent !important;
|
||||
color:#FFF !important;
|
||||
font-size:0.9em;
|
||||
font-weight:400;
|
||||
border: 0px solid !important;
|
||||
}
|
||||
|
||||
::ng-deep .dark .fc .fc-event{
|
||||
background:$accent-dark !important;
|
||||
color:#303030 !important;
|
||||
font-size:0.9em;
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
::ng-deep .fc-header-toolbar{
|
||||
display:block;
|
||||
}
|
||||
|
||||
::ng-deep .fc-left{
|
||||
float:left;
|
||||
}
|
||||
|
||||
::ng-deep .fc-right{
|
||||
float:right;
|
||||
}
|
||||
|
||||
::ng-deep .fc-center{
|
||||
margin-left:44%;
|
||||
padding-top: 10px;
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
@import "~styles/variables.scss";
|
||||
|
||||
.dark .mat-header-cell {
|
||||
background: $accent-dark !important;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
color: #303030;
|
||||
}
|
||||
|
||||
.mat-form-field {
|
||||
float:right;
|
||||
margin-right:20px;
|
||||
}
|
||||
|
||||
/*::ng-deep .dark .mat-form-field-label{
|
||||
font-size: 1.2em;
|
||||
}*/
|
||||
|
||||
::ng-deep .mat-form-field-infix {
|
||||
width: 8em;
|
||||
margin-top:1em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .mat-tab-label-active{
|
||||
background: $accent-dark !important;
|
||||
color: #303030 !important;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
::ng-deep .mat-tab-label{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
::ng-deep .row {
|
||||
margin-right:0;
|
||||
margin-left:0;
|
||||
}
|
||||
|
||||
@media (min-width: 500px) {
|
||||
.justify-content-md-center {
|
||||
justify-content: normal !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1170px){
|
||||
.justify-content-md-center {
|
||||
justify-content: center !important;
|
||||
}
|
||||
}
|
@ -1,19 +1,21 @@
|
||||
<div class="small-middle-container">
|
||||
<mat-tab-group>
|
||||
<div class="buttons">
|
||||
<mat-tab label="Movies">
|
||||
<ng-template matTabContent>
|
||||
<movies-grid (onOpenOptions)="onOpenOptions($event)"></movies-grid>
|
||||
<movies-grid (onOpenOptions)="onOpenOptions($event)"></movies-grid>
|
||||
</ng-template>
|
||||
</mat-tab>
|
||||
<mat-tab label="TV Shows">
|
||||
<ng-template matTabContent>
|
||||
<tv-grid (onOpenOptions)="onOpenOptions($event)"></tv-grid>
|
||||
<tv-grid (onOpenOptions)="onOpenOptions($event)"></tv-grid>
|
||||
</ng-template>
|
||||
</mat-tab>
|
||||
<mat-tab label="Albums">
|
||||
<h1>Coming soon</h1>
|
||||
<p>...</p>
|
||||
</mat-tab>
|
||||
</div>
|
||||
</mat-tab-group>
|
||||
|
||||
</div>
|
||||
|
@ -1,4 +1,65 @@
|
||||
@import "~styles/variables.scss";
|
||||
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .mat-header-cell {
|
||||
background: rgba(0, 0, 0, 0.381)!important;
|
||||
font-size: 1em;
|
||||
font-weight: 500;
|
||||
color: rgba(255, 255, 255, 0.842) !important;
|
||||
}
|
||||
|
||||
::ng-deep .dark .mat-header-cell .mat-checkbox-frame {
|
||||
border-color: #FFF;
|
||||
}
|
||||
|
||||
.mat-form-field {
|
||||
float:right;
|
||||
}
|
||||
|
||||
::ng-deep .mat-form-field-label{
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
::ng-deep .mat-form-field-infix {
|
||||
width: 10em;
|
||||
margin-top:1em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .mat-tab-label-active{
|
||||
background: $accent-dark !important;
|
||||
color: #303030 !important;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
::ng-deep .mat-tab-label{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
::ng-deep .mat-tab-header {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .mat-sort-header-arrow{
|
||||
color:#c6c6c6;
|
||||
}
|
||||
|
||||
::ng-deep .mat-column-actions{
|
||||
text-align:end;
|
||||
}
|
||||
|
||||
@media (min-width: 500px) {
|
||||
.justify-content-md-center {
|
||||
justify-content: normal !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1170px){
|
||||
.justify-content-md-center {
|
||||
justify-content: center !important;
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
@import "~styles/variables.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
.col-md-4{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-4{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
@import "~styles/shared.scss";
|
||||
.col-12 {
|
||||
display:grid;
|
||||
}
|
||||
|
||||
textarea {
|
||||
min-height:100px;
|
||||
height: auto;
|
||||
max-height:800px;
|
||||
}
|
||||
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.btn-danger-outline{
|
||||
background-color: #E84C3D;
|
||||
}
|
||||
|
||||
.btn-success-outline{
|
||||
background-color: #1b9d1b;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
.col-md-9{
|
||||
display: inline-table;
|
||||
}
|
||||
.col-md-3{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.btn-danger-outline{
|
||||
background-color: #E84C3D;
|
||||
}
|
||||
|
||||
.btn-success-outline{
|
||||
background-color: #1b9d1b;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .categoryResults{
|
||||
background-color: rgba(0, 0, 0, 0.05);
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
@media (min-width: 1200px){
|
||||
.container {
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px){
|
||||
.container {
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px){
|
||||
.container {
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px){
|
||||
.container {
|
||||
max-width: inherit;
|
||||
}
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.btn-danger-outline{
|
||||
background-color: #E84C3D;
|
||||
}
|
||||
|
||||
.btn-success-outline{
|
||||
background-color: #1b9d1b;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -1,8 +1,13 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 80%;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.code-block {
|
||||
font-size: 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .code-block {
|
||||
color:#FFF !important;
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
.col-12 {
|
||||
display:grid;
|
||||
}
|
||||
|
||||
textarea {
|
||||
min-height:100px;
|
||||
height: auto;
|
||||
max-height:800px;
|
||||
}
|
||||
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
@media (min-width: 1600px) {
|
||||
.container {
|
||||
max-width: 1500px;
|
||||
}
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.btn-danger-outline{
|
||||
background-color: #E84C3D;
|
||||
}
|
||||
|
||||
.btn-success-outline{
|
||||
background-color: #1b9d1b;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-4{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
::ng-deep .load {
|
||||
max-width: fit-content;
|
||||
margin-left:3em;
|
||||
padding: 0.5rem 1.14rem;
|
||||
}
|
||||
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-4{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-4{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
::ng-deep .load {
|
||||
max-width: fit-content;
|
||||
margin-left:3em;
|
||||
padding: 0.5rem 1.14rem;
|
||||
}
|
||||
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-4{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 85%;
|
||||
margin-top:10px;
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.col-md-6{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.control-label{
|
||||
font-weight:400;
|
||||
}
|
||||
|
||||
.row{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.btn-danger-outline{
|
||||
background-color: #E84C3D;
|
||||
}
|
||||
|
||||
.btn-success-outline{
|
||||
background-color: #1b9d1b;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
@media (min-width:1440px) {
|
||||
.col-md-6{
|
||||
display: inline-table;
|
||||
}
|
||||
|
||||
.col-md-5{
|
||||
display: inline-table;
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
@import "~styles/shared.scss";
|
||||
.small-middle-container{
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
::ng-deep .dark .small-middle-container{
|
||||
background-color: rgba(0, 0, 0, 0.10);
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
::ng-deep .dark .btn:hover{
|
||||
box-shadow: 0 5px 11px 0 rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
|
||||
color: inherit;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue