Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 109 additions & 23 deletions options.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,45 +12,47 @@ html {

}

@media (prefers-color-scheme: dark) {

body {
background: #222;
}

}

body {
color: #000;
color: #fff;
font-size: 14px;
}

.ui-button {
background: #eee;
color: #333;
border: 1px solid #888;
background: #34d46a;
color: #000;
border: none;
border-radius: 50px;
padding:8px 15px;
animation-name: ui-button-unhover;
animation-duration: 0.2s;
}

.ui-button:focus {
background: #eee;
border: 1px solid #888;
background: #34d46a;
border:none;
}

.ui-button:hover {
background: #ddd;
border: 1px solid #888;
background: #8cff6f;
border:none;
animation-name: ui-button-hover;
animation-duration: 0.2s;
}

.ui-widget button {
padding: 2px 8px;
background: #eee;
background: #ccc;
color: #333;
border: 1px solid #888;
border-radius: 3px;
border: none;
padding:8px 12px;
border-radius:50px;
animation-name: widget-unhover;
animation-duration: 0.2s;
}

.ui-widget button:hover:enabled {
background: #ddd;
animation-name: widget-hover;
animation-duration: 0.2s;
}

.ui-widget button:active:enabled {
Expand All @@ -60,13 +62,19 @@ body {
.ui-widget button:disabled {
background: #eee;
color: #666;
border: 1px solid #ccc;
border: none;
}

.ui-widget fieldset, .ui-widget input, .ui-widget select, .ui-widget textarea {
background: #fff;
color: #000;
border: 1px solid #888;
border: 1px #aaa solid;
border-radius:15px;
padding: 8px 10px;
margin: 10px 0px;
}

.ui-widget input, .ui-widget select {
background-color:white;
}

.ui-widget input:disabled, .ui-widget select:disabled, .ui-widget textarea:disabled {
Expand Down Expand Up @@ -100,12 +108,55 @@ body {
.ui-widget th, .ui-widget td {
text-align: center;
padding: 4px 12px;
border: none;
}

.ui-widget code {
font: normal 14px monospace;
}

.ui-widget-header {
background: #fff;
color: #333;
border: none;
}

.ui-widget-content {
background: #eee;
color: #000;
border: none;
}

.ui-widget.ui-widget-content {
border: none;
}

.ui-tabs .ui-state-default {
background: #ccc;
border: none;
border-radius: 15px 15px 0px 0px;
padding-top: 3px !important;
}

.ui-tabs .ui-state-default a {
color: #333;
}

.ui-tabs .ui-state-hover {
background: #ddd;
border: none;
animation-name: tab-hover;
animation-duration: 0.2s;
}

.ui-tabs .ui-state-active {
background: #eee;
border: none;
animation-name: tab-select;
animation-duration: 0.2s;
}


.logo {
width: 408px;
}
Expand Down Expand Up @@ -153,3 +204,38 @@ body {
#results {
font: normal 12px monospace;
}

@keyframes ui-button-hover {
from {background-color: #34d46a;}
to {background-color: #8cff6f;}
}

@keyframes ui-button-unhover {
from {background-color: #8cff6f;}
to {background-color: #34d46a;}
}

@keyframes widget-hover {
from {background-color: #ccc;}
to {background-color: #ddd;}
}

@keyframes widget-unhover {
from {background-color: #ddd;}
to {background-color: #ccc;}
}

@keyframes tab-select {
from {background-color: #ccc;}
to {background-color: #eee;}
}

@keyframes tab-hover {
from {background-color: #ccc;}
to {background-color: #ddd;}
}

@keyframes tab-unhover {
from {background-color: #ddd;}
to {background-color: #ccc;}
}
27 changes: 20 additions & 7 deletions popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

body {
color: #000;
color: #fff;
font-size: 14px;
text-align: center;
}
Expand All @@ -28,17 +28,20 @@ body {
}

button {
display: inline;
width: 100%;
margin: 2px;
padding: 2px;
background: #eee;
border: 1px solid #888;
border-radius: 6px;
color: #333;
border: none;
padding:8px 12px;
margin: 2px 0px;
border-radius:50px;
animation-name: button-unhover;
animation-duration: 0.2s;
}

button:hover:enabled {
background: #ddd;
animation: button-hover;
animation-duration: 0.2s;
}

button:active:enabled {
Expand All @@ -48,3 +51,13 @@ button:active:enabled {
.logo {
width: 204px;
}

@keyframes button-hover {
from {background-color: #eee;}
to {background-color: #ddd;}
}

@keyframes button-unhover {
from {background-color: #ddd;}
to {background-color: #eee;}
}
46 changes: 37 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
@media (prefers-color-scheme: dark) {

body {
background: #222;
background: #000;
}

}

body {
color: #2e3436;
padding:30px 0px;
color: #000;
font: normal 16px "Open Sans", Arial, sans-serif;
text-align: center;
}
Expand All @@ -44,28 +45,55 @@ blockquote {
font-weight: bold;
}

input, button {
color: #333;
font: normal 16px "Open Sans", Arial, sans-serif;
padding: 2px 8px;
border: 1px solid #888;
border-radius: 6px;
input {
background: #fff;
color: #000;
border: 1px #aaa solid;
border-radius:15px;
padding: 8px 10px;
margin: 10px 0px;
}

button {
background: #eee;
color: #333;
border: none;
padding:6px 12px;
margin: 2px 0px;
border-radius:50px;
animation-name: button-unhover;
animation-duration: 0.2s;
}

button:hover:enabled {
background: #ddd;
animation: button-hover;
animation-duration: 0.2s;
}

button:active:enabled {
background: #ccc;
}

@keyframes button-hover {
from {background-color: #eee;}
to {background-color: #ddd;}
}

@keyframes button-unhover {
from {background-color: #ddd;}
to {background-color: #eee;}
}

.logo {
width: 408px;
width:408px;
animation: leechblock;
animation-duration: 1s;
}

@keyframes leechblock {
from {width:100%;}
to {width:408px;}
}

.keyword {
Expand Down
Loading