metamorpov/popup.css

103 lines
1.4 KiB
CSS

body {
background-color: white;
color: #2C3531;
width: 250px;
padding:10px;
font-family: 'Rubik', sans-serif;
}
h1 {
font-size: 16px;
}
a{
color: #D9B08C;
transition-duration: 0.5s;
}
a:hover{
color: #16a085;
}
label *:not([type="checkbox"]){
display:block;
}
.other-words input:not([type="checkbox"]){
margin-top:0.5em;
width:100%;
}
.other-words .other, .other-words .replace-with{
width:98%;
}
.other-words .change{
margin-right:0;
}
#clear-name, #deactivate, #refresh-replacements{
margin-top:0.5em;
width:96%;
}
#refresh-replacements {
margin-top: 1.5em;
font-size: 1.005em;
background-color: #D9B08C;
border-radius: 0.5em;
color: white;
}
#refresh-replacements:hover {
color: black;
}
#deactivate{
background-color: #116466;
color:white;
border:0px;
border-radius:0.5em;
transition-duration: 0.5s;
font-size: 1em;
}
#deactivate:hover{
color: #116466;
background-color: white;
cursor:pointer;
}
input[type="text"]{
width:70%;
}
.strikethrough{
text-decoration: line-through;
}
.one-saved-item:hover{
background-color: #e74c3c;
color: white;
cursor: pointer;
}
.saved-items-list-wrapper{
height:100px;
overflow: auto;
}
details {
margin-top: 0.8em;
}
summary {
cursor: pointer;
}
input[type="button"]{
margin-top: 0.8em;
margin-bottom: 0.8em;
}
input[type="submit"]{
cursor: pointer;
transition-duration: 0.5s;
}
input[type="submit"]:hover {
background-color: #2C3531;
color: white;
border-radius: 0.4em;
}