|
| 1 | +@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap'); |
| 2 | + |
| 3 | +body { |
| 4 | + font-family: 'Share Tech Mono', monospace; |
| 5 | + background: repeating-linear-gradient( |
| 6 | + 45deg, |
| 7 | + #000000, |
| 8 | + #000000 10px, |
| 9 | + #111111 10px, |
| 10 | + #111111 20px |
| 11 | + ); |
| 12 | + color: #00ffcc; |
| 13 | + padding: 2rem; |
| 14 | + max-width: 1000px; |
| 15 | + margin: auto; |
| 16 | + overflow-x: hidden; |
| 17 | + text-shadow: 0 0 1px #00ffcc; |
| 18 | +} |
| 19 | + |
| 20 | +h1 { |
| 21 | + font-size: 2.5rem; |
| 22 | + text-transform: uppercase; |
| 23 | + color: #ff0066; |
| 24 | + text-shadow: 0 0 5px #ff0066, 0 0 10px #ff0066; |
| 25 | + border-bottom: 2px solid #ff0066; |
| 26 | + margin-bottom: 1rem; |
| 27 | +} |
| 28 | + |
| 29 | +h2 { |
| 30 | + font-size: 1.4rem; |
| 31 | + text-transform: uppercase; |
| 32 | + border-left: 4px solid #00ffcc; |
| 33 | + padding-left: 0.5rem; |
| 34 | + color: #00ffcc; |
| 35 | + margin-top: 2rem; |
| 36 | + text-shadow: 0 0 2px #00ffcc; |
| 37 | +} |
| 38 | + |
| 39 | +section { |
| 40 | + background: rgba(255, 0, 102, 0.05); |
| 41 | + border: 2px dashed #ff0066; |
| 42 | + padding: 1rem; |
| 43 | + margin-bottom: 2rem; |
| 44 | + box-shadow: 0 0 10px #ff0066; |
| 45 | +} |
| 46 | + |
| 47 | +ul { |
| 48 | + padding-left: 1.5rem; |
| 49 | +} |
| 50 | + |
| 51 | +li { |
| 52 | + margin-bottom: 0.5rem; |
| 53 | + background: rgba(0, 255, 204, 0.1); |
| 54 | + padding: 0.8rem; |
| 55 | + border-left: 4px solid #00ffcc; |
| 56 | + transition: background 0.2s ease-in-out; |
| 57 | +} |
| 58 | + |
| 59 | +li:hover { |
| 60 | + background: rgba(0, 255, 204, 0.2); |
| 61 | +} |
| 62 | + |
| 63 | +.done { |
| 64 | + text-decoration: line-through; |
| 65 | + color: #555; |
| 66 | +} |
| 67 | + |
| 68 | +a { |
| 69 | + color: #ff0066; |
| 70 | + font-weight: bold; |
| 71 | + text-decoration: none; |
| 72 | + border-bottom: 1px dashed #ff0066; |
| 73 | +} |
| 74 | + |
| 75 | +a:hover { |
| 76 | + text-shadow: 0 0 3px #ff0066; |
| 77 | + border-bottom: none; |
| 78 | +} |
| 79 | + |
| 80 | +.tag { |
| 81 | + background: #ff0066; |
| 82 | + color: #000; |
| 83 | + padding: 0.2em 0.5em; |
| 84 | + border-radius: 4px; |
| 85 | + font-weight: bold; |
| 86 | + margin-left: 0.5rem; |
| 87 | +} |
| 88 | + |
| 89 | +.meta { |
| 90 | + font-size: 0.8em; |
| 91 | + color: #999; |
| 92 | + margin-top: 0.5rem; |
| 93 | + font-style: italic; |
| 94 | +} |
| 95 | + |
| 96 | +body::before { |
| 97 | + content: ''; |
| 98 | + pointer-events: none; |
| 99 | + position: fixed; |
| 100 | + inset: 0; |
| 101 | + background: repeating-linear-gradient( |
| 102 | + to bottom, |
| 103 | + rgba(255, 255, 255, 0.03), |
| 104 | + rgba(255, 255, 255, 0.03) 1px, |
| 105 | + transparent 1px, |
| 106 | + transparent 3px |
| 107 | + ); |
| 108 | + animation: flicker 2s infinite linear; |
| 109 | +} |
| 110 | + |
| 111 | +@keyframes flicker { |
| 112 | + 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { |
| 113 | + opacity: 0.99; |
| 114 | + } |
| 115 | + 20%, 24%, 55% { |
| 116 | + opacity: 0.4; |
| 117 | + } |
| 118 | +} |
0 commit comments