czarnuch
Data utworzenia: 2024-11-26 07:54:20
*{
margin: 2px;
padding: 0;
box-sizing: border-box;
}
html{
font-size: 24px;
}
body{
font-family: sans-serif;
background-color: #222;
color: white;
}
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;
}
input{
margin-top: .5rem ;
}
input::placeholder{
font-weight: bold;
opacity: .5;
color:blueviolet;
}
Powrót