More work on polls and themes

This commit is contained in:
Daisuke
2020-04-21 17:42:31 -05:00
parent d34a7c7ced
commit f59049c3c2
18 changed files with 281 additions and 103 deletions

View File

@ -75,6 +75,7 @@ a, .link {
textarea,input[type="text"],select{
background-color: <?php echo ($foregroundL < 50 ? $foregroundLight : $foregroundDark) ?>;
color:<?php echo $text; ?>;
border:0px;
}
body {
@ -114,6 +115,20 @@ input[type="checkbox"]:checked+label {
color: <?php echo $foreground; ?>;
}
.polloption{
display:block;
margin:5px;
padding:5px;
background-color: <?php echo $foregroundLighter; ?>;
color: <?php echo $link; ?>;
}
.polloption:hover{
cursor: pointer;
background-color: <?php echo $foregroundDarker; ?>;
color: white;
}
.tiselected {
border-bottom: 2px solid <?php echo $foreground; ?>;
}
@ -141,7 +156,7 @@ input[type="checkbox"]:checked+label {
color:<?php echo $text; ?> !important;
}
#quicksend,#send {
input[type="submit"] {
background-color: <?php echo $link; ?>;
color: <?php echo $foreground; ?>;
border:0px;