My personal website
at main 60 lines 1.5 kB view raw
1/*! 2 * Personal website of Sefa Eyeoglu 3 * Copyright (C) 2018-2022 Sefa Eyeoglu <contact@scrumplex.net> 4 * 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU Affero General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Affero General Public License for more details. 14 * 15 * You should have received a copy of the GNU Affero General Public License 16 * along with this program. If not, see <https://www.gnu.org/licenses/>. 17 */ 18 19@import "variables"; 20 21noscript { 22 position: fixed; 23 top: 0; 24 left: 0; 25 right: 0; 26 background-color: $colorBase; 27 padding: 10px; 28 text-align: center; 29 z-index: 1000; 30 31 @media (prefers-color-scheme: dark) { 32 background-color: $colorBaseDark; 33 } 34} 35 36.wrapper { 37 padding-top: 100px; 38 padding-bottom: 100px; 39} 40 41body.scroll { 42 padding-bottom: 0; 43} 44 45.sheet { 46 display: block !important; 47 opacity: 1; 48 animation: none; 49 top: initial !important; 50 position: relative !important; 51 transform: none !important; 52} 53 54img[data-src] { 55 display: none; 56} 57 58.scroll-indicator { 59 display: none; 60}