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

@ -23,6 +23,10 @@ input[type="checkbox"]:checked+label {
color: red;
}
input[type="text"]{
border:0px;
}
.topbar {
background-color: #3b5998;
border-bottom: 2px solid #14468d;
@ -109,7 +113,7 @@ input[type="checkbox"]:checked+label {
background-color:white;
}
#send {
input[type="submit"] {
background-color:#4267b2;
border: 1px solid #425f99;
color:white;
@ -223,6 +227,22 @@ input[type="checkbox"]:checked+label {
color: white;
}
.polloption{
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.1);
border-radius: 5px;
display:block;
margin:5px;
padding:5px;
background-color: #ddd;
}
.polloption:hover{
background-color: #3b5998;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
color: white;
cursor: pointer;
}
.icon {
background-color: black;
}