66
edits
No edit summary |
(Fix CSS menu, maybe) |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
body { | body { | ||
background-image: linear-gradient(245deg, rgba(89,149,255,1) 0%, rgba(104,88,255,1) 100%) | background-image: linear-gradient(245deg, rgba(89,149,255,1) 0%, rgba(104,88,255,1) 100%); | ||
background-color: rgb(104,88,255); | background-color: rgb(104,88,255); | ||
} | } | ||
| Line 99: | Line 99: | ||
.vectorMenu h3 span { | .vectorMenu h3 span { | ||
color: #F0F0F2; | color: #F0F0F2; | ||
} | |||
#p-navigation a[href]:link, #p-navigation a[href]:visited { | |||
color: white; | |||
transition: color 150ms ease, opacity 150ms ease; | |||
} | |||
#p-navigation a[href]:hover { | |||
opacity: 0.7; | |||
} | |||
#p-navigation a[href]:active { | |||
opacity: 0.9; | |||
} | } | ||