Difference between revisions of "MediaWiki:Tweeki.css"
From Security Vision
Line 3: | Line 3: | ||
root:{ | root:{ | ||
--text-color-btn: black; | --text-color-btn: black; | ||
+ | --darkgrey:#404040; | ||
} | } | ||
Line 25: | Line 26: | ||
padding:0; | padding:0; | ||
padding-left: 8px; | padding-left: 8px; | ||
− | margin: | + | margin-left: 8px; |
} | } | ||
Line 41: | Line 42: | ||
} | } | ||
.btn:hover{ | .btn:hover{ | ||
− | background: darkgrey; | + | background: var(--darkgrey); |
− | border-color:darkgrey; | + | border-color:var(--darkgrey); |
+ | } | ||
+ | #sidebar-left.btn{ | ||
+ | border-radius: none; | ||
+ | border: 0.8px solid | ||
} | } |
Revision as of 17:56, 18 January 2024
/* CSS placed here will affect users of the Tweeki skin */
root:{
--text-color-btn: black;
--darkgrey:#404040;
}
.container{
margin:none;
padding: 0px;
width:100%;
}
#mw-navigation{
box-shadow: 0px 3px 8px red;
border-color: red;
}
.nav{
padding:none;
}
#sidebar-left{
padding:0;
padding-left: 8px;
margin-left: 8px;
}
/* ------- buttons ------- */
.btn{
background:white;
border-color: darkgrey;
text-shadow: none;
box-shadow: none;
}
a.btn{
color: var(--text-color-btn);
}
.btn:hover{
background: var(--darkgrey);
border-color:var(--darkgrey);
}
#sidebar-left.btn{
border-radius: none;
border: 0.8px solid
}