summaryrefslogtreecommitdiff
path: root/theme1a.css
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2024-03-07 23:28:41 -0500
committerGravatar Chris Xiong <chirs241097@gmail.com> 2024-03-07 23:28:41 -0500
commita59e0c492ae8630e416c3fa5787ecec311c4f2ff (patch)
tree7848e2891375f759bd30fc1dda4e6ebd4f5b540d /theme1a.css
parent717fe320dc367edd2be0605d895113b4bbeb7939 (diff)
downloadweb-a59e0c492ae8630e416c3fa5787ecec311c4f2ff.tar.xz
Remove duplicate shit from theme css files.
Diffstat (limited to 'theme1a.css')
-rw-r--r--theme1a.css86
1 files changed, 21 insertions, 65 deletions
diff --git a/theme1a.css b/theme1a.css
index 3b41360..927b5f9 100644
--- a/theme1a.css
+++ b/theme1a.css
@@ -1,66 +1,22 @@
-:root {
- --bg-primary: #FFF;
+:root{
+ --principal-bg: #FFF;
+ --principal-fg: #000;
+ --secondary-bg: #EEE;
+ --secondary-fg: #333;
+ --list-active-bg: #CEC;
+ --list-highlighted-bg: #DFD;
+ --link-fg: #1194FF;
+ --link-visited-fg: #20ACFF;
+ --link-hover-fg: #3FBFFF;
+ --link-active-fg: #CCCCFF;
+ --link-highlighted-fg: #EA0;
+ --interactive-bg: #4A4;
+ --interactive-fg: #FFF;
+ --interactive-hover-bg: #5B5;
+ --interactive-active-bg: #6C6;
+ --interactive-disabled-bg: #999;
+ --widget-area-bg: rgba(204,204,204,0.6);
+ --slider-empty-bg: rgba(64,240,96,0.6);
+ --slider-filled-bg: #10C048;
+ --bg-pattern: url("/pattern1a.png");
}
-body{
- background-color: var(--bg-primary);
- background-image: url("/pattern1a.png");
- background-repeat: repeat;
- color: #000;
-}
-del{
- text-decoration-color: #000;
-}
-#panel li a.active{
-background-color:#CEC;
-}
-#panel li a:hover:not(.active){
-background-color:#DFD;
-}
-#panel,#footer{
- background-color:#EEE;
- background-image: url("/pattern1a.png");
- background-repeat: repeat;
-}
-#content .block{
-border: 1px solid #333;
-}
-a.highlighted{color:#EA0 !important;}
-a:link{
-color:#1194FF;
-}
-a:visited{
-color:#20ACFF;
-}
-a:hover{
-color:#3FBFFF;
-}
-a:active{
-color:#CCCCFF;
-}
-blockquote{
-border: 1px solid #333;
-}
-button,.fakebtn{
- color:white;
- background-color:#4A4;
-}
-button:hover,.fakebtn:hover{
- background-color:#5B5;
-}
-button:active,.fakebtn:active{
- background-color:#6C6;
-}
-button:disabled{
- background-color:#999;
-}
-input[type="text"]{
- color:#000;
- border-bottom-color:#4A4;
-}
-textarea{
- color:#000;
- border-color:#4A4;
-}
-.widgetbg{background-color:rgba(204,204,204,0.6);}
-.sliderb1{background-color:rgba(64,240,96,0.6);}
-.sliderb2{background-color:#10C048;}