forked from tv2/sisyfos-audio-controller
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: custom pages menu - add css file to git - move "PAGES SETUP" in…
… Channels view
- Loading branch information
olzzon
authored and
olzzon
committed
Oct 22, 2020
1 parent
b68599c
commit 944c633
Showing
2 changed files
with
115 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
.pages-settings-body { | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
width: 400px; | ||
overflow: auto; | ||
max-height: 90vh; | ||
background-color: rgb(31, 31, 31); | ||
border-color: rgb(124, 124, 124); | ||
border-style: solid; | ||
border-width: 4px; | ||
text-align: center; | ||
align-items: center; | ||
z-index: 2; | ||
|
||
color: #fff; | ||
} | ||
|
||
.pages-settings-body > h2 { | ||
border-bottom: 1px solid #999; | ||
margin: 0; | ||
padding: 10px 0; | ||
line-height: 50px; | ||
text-align: center; | ||
} | ||
|
||
.pages-settings-mixer-name { | ||
font-size: 150%; | ||
border-bottom: 1px solid #999; | ||
margin: 0; | ||
padding: 10px 0; | ||
line-height: 50px; | ||
text-align: center; | ||
} | ||
|
||
.pages-settings-text { | ||
color: dimgray; | ||
margin: 0; | ||
margin-left: 40px; | ||
padding: 0px 0; | ||
line-height: 20px; | ||
text-align: center; | ||
font-size: 110%; | ||
} | ||
|
||
.pages-settings.checked { | ||
font-weight: bold; | ||
color: white; | ||
} | ||
|
||
.pages-settings-body > .close { | ||
position: absolute; | ||
outline: none; | ||
border-color: rgb(99, 99, 99); | ||
background-color: rgb(27, 27, 27); | ||
border-radius: 100%; | ||
display: block; | ||
color: #fff; | ||
width: 50px; | ||
height: 50px; | ||
font-size: 30px; | ||
line-height: 50px; | ||
top: -5px; | ||
right: 9px; | ||
} | ||
|
||
.pages-settings-body > button { | ||
line-height: 20px; | ||
outline: none; | ||
border-color: rgb(99, 99, 99); | ||
background-color: rgb(58, 3, 3); | ||
margin-right: 10px; | ||
margin-top: 15px; | ||
margin-bottom: 15px; | ||
margin-left: 10px; | ||
border-radius: 7px; | ||
color: #fff; | ||
width: 34%; | ||
height: 50px; | ||
font-size: 10px; | ||
} | ||
|
||
.pages-settings-body > .inputfield { | ||
line-height: 40px; | ||
outline: none; | ||
margin-top: 45px; | ||
border-radius: 7px; | ||
color: #fff; | ||
width: 34%; | ||
height: 50px; | ||
font-size: 18px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters