Difference between revisions of "MediaWiki:Tweeki.css"
From Security Vision
Line 1: | Line 1: | ||
/* CSS placed here will affect users of the Tweeki skin */ | /* CSS placed here will affect users of the Tweeki skin */ | ||
+ | |||
+ | root:{ | ||
+ | --text-color-btn: black; | ||
+ | } | ||
+ | |||
Line 15: | Line 20: | ||
.btn{ | .btn{ | ||
background:white; | background:white; | ||
− | + | border-color: darkgrey; | |
+ | text-shadow: none; | ||
+ | box-shadow: none; | ||
+ | color: var(--text-color-btn) | ||
+ | } | ||
+ | .btn:hover{ | ||
+ | background: darkgrey; | ||
} | } |
Revision as of 16:06, 18 January 2024
/* CSS placed here will affect users of the Tweeki skin */
root:{
--text-color-btn: black;
}
.container{
margin:none;
padding: 8px;
}
#sidebar-left{
padding:0;
}
/* ------- buttons ------- */
.btn{
background:white;
border-color: darkgrey;
text-shadow: none;
box-shadow: none;
color: var(--text-color-btn)
}
.btn:hover{
background: darkgrey;
}