melanie a révisé ce gist 4 days ago. Aller à la révision
1 file changed, 11 insertions, 1 deletion
maloja-mocha.css
| @@ -22,10 +22,20 @@ | |||
| 22 | 22 | --button-color-fg-focus: var(--base-color); | |
| 23 | 23 | } | |
| 24 | 24 | ||
| 25 | - | img[src="/favicon.png"] { | |
| 25 | + | #notch { | |
| 26 | 26 | filter: hue-rotate(120deg); | |
| 27 | + | transform: scale(.67); | |
| 27 | 28 | } | |
| 28 | 29 | ||
| 29 | 30 | a[href="/about"] { | |
| 30 | 31 | display: none; | |
| 31 | 32 | } | |
| 33 | + | ||
| 34 | + | .hidelink { | |
| 35 | + | opacity: 0; | |
| 36 | + | transition: 100ms opacity ease-in; | |
| 37 | + | ||
| 38 | + | &:hover { | |
| 39 | + | opacity: 1; | |
| 40 | + | } | |
| 41 | + | } | |
melanie a révisé ce gist 4 days ago. Aller à la révision
1 file changed, 0 insertions, 0 deletions
maloja-custom.css renommé en maloja-mocha.css
Fichier renommé sans modifications
melanie a révisé ce gist 4 days ago. Aller à la révision
Aucun changement
melanie a révisé ce gist 4 days ago. Aller à la révision
1 file changed, 31 insertions
maloja-custom.css(fichier créé)
| @@ -0,0 +1,31 @@ | |||
| 1 | + | :root { | |
| 2 | + | --base-color: #1e1e2e; | |
| 3 | + | --base-color-dark: #181825; | |
| 4 | + | --base-color-light: #313244; | |
| 5 | + | --base-color-accent: #74c7ec; | |
| 6 | + | --base-color-accent-dark: #74c7ec; | |
| 7 | + | --base-color-accent-light: #6c7086; | |
| 8 | + | ||
| 9 | + | --text-color: #cdd6f4; | |
| 10 | + | --text-color-selected: fadeout(var(--text-color),40%); | |
| 11 | + | --text-color-secondary: #bac2de; | |
| 12 | + | --text-color-tertiary: #a6adc8; | |
| 13 | + | --text-color-focus: #74c7ec; | |
| 14 | + | ||
| 15 | + | --ctrl-element-color-bg: rgba(17,17,27,0.1); | |
| 16 | + | --ctrl-element-color-main: rgba(116, 199, 236,0.7); | |
| 17 | + | --ctrl-element-color-focus: #74c7ec; | |
| 18 | + | ||
| 19 | + | --button-color-bg: var(--text-color); | |
| 20 | + | --button-color-bg-focus: var(--text-color-focus); | |
| 21 | + | --button-color-fg: var(--base-color); | |
| 22 | + | --button-color-fg-focus: var(--base-color); | |
| 23 | + | } | |
| 24 | + | ||
| 25 | + | img[src="/favicon.png"] { | |
| 26 | + | filter: hue-rotate(120deg); | |
| 27 | + | } | |
| 28 | + | ||
| 29 | + | a[href="/about"] { | |
| 30 | + | display: none; | |
| 31 | + | } | |