summaryrefslogtreecommitdiff
path: root/theme0a.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 /theme0a.css
parent717fe320dc367edd2be0605d895113b4bbeb7939 (diff)
downloadweb-a59e0c492ae8630e416c3fa5787ecec311c4f2ff.tar.xz
Remove duplicate shit from theme css files.
Diffstat (limited to 'theme0a.css')
-rw-r--r--theme0a.css86
1 files changed, 21 insertions, 65 deletions
diff --git a/theme0a.css b/theme0a.css
index 119d19d..c5bb30f 100644
--- a/theme0a.css
+++ b/theme0a.css
@@ -1,66 +1,22 @@
-:root {
- --bg-primary: #F9EFF6;
+:root{
+ --principal-bg: #F9EFF6;
+ --principal-fg: #000;
+ --secondary-bg: #EEE0E9;
+ --secondary-fg: #333;
+ --list-active-bg: #EEC0DD;
+ --list-highlighted-bg: #FCE;
+ --link-fg: #CF4AFF;
+ --link-visited-fg: #DA50FF;
+ --link-hover-fg: #DD40FF;
+ --link-active-fg: #EEAAFF;
+ --link-highlighted-fg: #EA0;
+ --interactive-bg: #C7B;
+ --interactive-fg: #FFF;
+ --interactive-hover-bg: #D8C;
+ --interactive-active-bg: #E9D;
+ --interactive-disabled-bg: #999;
+ --widget-area-bg: rgba(204,204,204,0.6);
+ --slider-empty-bg: rgba(184,122,171,0.6);
+ --slider-filled-bg: #F0A0E0;
+ --bg-pattern: url("/pattern0a.png");
}
-body{
- background-color: var(--bg-primary);
- background-image: url("/pattern0a.png");
- background-repeat: repeat;
- color: #000;
-}
-del{
- text-decoration-color: #000;
-}
-#panel li a.active{
-background-color:#EEC0DD;
-}
-#panel li a:hover:not(.active){
-background-color:#FCE;
-}
-#panel,#footer{
- background-color:#EEE0E9;
- background-image: url("/pattern0a.png");
- background-repeat: repeat;
-}
-#content .block{
-border: 1px solid #333;
-}
-a.highlighted{color:#EA0 !important;}
-a:link{
-color:#CF4AFF;
-}
-a:visited{
-color:#DA50FF;
-}
-a:hover{
-color:#DD40FF;
-}
-a:active{
-color:#EEAAFF;
-}
-blockquote{
-border: 1px solid #333;
-}
-button,.fakebtn{
- color:white;
- background-color:#C7B;
-}
-button:hover,.fakebtn:hover{
- background-color:#D8C;
-}
-button:active,.fakebtn:active{
- background-color:#E9D;
-}
-button:disabled{
- background-color:#999;
-}
-input[type="text"]{
- color:#000;
- border-bottom-color:#C7B;
-}
-textarea{
- color:#000;
- border-color:#C7B;
-}
-.widgetbg{background-color:rgba(204,204,204,0.6);}
-.sliderb1{background-color:rgba(184,122,171,0.6);}
-.sliderb2{background-color:#F0A0E0;}