Brak tytułu

Data utworzenia: 2024-11-26 08:08:49
* { padding: 0; margin: 10px; box-sizing: border-box; } html { font-size: 24px; } body { font-family: sans-serif; background-color: #222; color: white; } /* pseudoelement "::" */ p::first-letter { font-size: 1.5rem; color: aqua; font-weight: bold; } p::first-line { background-color: gold; } p::selection { color: red; background-color: pink; } p::before { content: ' 👀 ' } p::after{ content: " 🏀 "; } li::marker { content: ' * '; font-weight: bold; color: red; font-size: 2rem; } input { margin-top: .5rem; } input::placeholder { font-weight: bold; opacity: .5; color: blueviolet; } p { size: 2rem; text-align: center; } a:link { color: yellow; } a:visited { color: aqua; } a:focus { text-decoration: none; background: red; }
Powrót