diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-20 10:22:52 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-20 10:22:52 +0100 |
| commit | 5a933cea88bbfa9ee4ed205004a2cd6741abbdd7 (patch) | |
| tree | ec88ba77c4feed65a41ab631453a9111b003567f /assets/scss | |
| parent | 20719cdd26af6b90ca075df15d0f7927e87553e8 (diff) | |
Add AI notice to header
Diffstat (limited to 'assets/scss')
| -rw-r--r-- | assets/scss/print/_header.scss | 22 | ||||
| -rw-r--r-- | assets/scss/web/_header.scss | 4 |
2 files changed, 26 insertions, 0 deletions
diff --git a/assets/scss/print/_header.scss b/assets/scss/print/_header.scss index 0fef039..15e893a 100644 --- a/assets/scss/print/_header.scss +++ b/assets/scss/print/_header.scss @@ -1,3 +1,25 @@ +.header__ai { + display: inline; + position: absolute; + color: white; + z-index: 9999; + font-size: 1px; + margin-top: 0px; + margin-bottom: 0px; + + top: 0px; + left: 0%; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + cursor: none; + -webkit-touch-callout: none; /* iOS Safari */ + -webkit-user-select: none; /* Safari */ + -khtml-user-select: none; /* Konqueror HTML */ + -moz-user-select: none; /* Old versions of Firefox */ + -ms-user-select: none; /* Internet Explorer/Edge */ + user-select: none; /* Non-prefixed version */ +} + .header__name { margin-bottom: 0.1rem; margin-top: 1rem; diff --git a/assets/scss/web/_header.scss b/assets/scss/web/_header.scss index fb79c3e..7dd428b 100644 --- a/assets/scss/web/_header.scss +++ b/assets/scss/web/_header.scss @@ -3,6 +3,10 @@ font-style: normal; } +.header__ai { + display: none; +} + .header__name { font-size: 3.3rem; margin-bottom: -0.2rem; |
