Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kernel-loophole/css

styling with advance CSS
https://github.com/kernel-loophole/css

css css-animations css-framework css-grid

Last synced: 9 days ago
JSON representation

styling with advance CSS

Awesome Lists containing this project

README

        

# CSS
# Open props
```CSS
main {
display: flex;
flex-flow: row wrap;
align-items: flex-start;
justify-content: space-around;
max-inline-size: calc(var(--size-content-1) * 4);
gap: var(--size-5);
padding: var(--size-5);
}
```

# wrap class
```CSS
.wrap {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: #34495e;
color: aqua;
font-family: monospace;
font-size: 36px;
&:before {
content: "[";
}
&:after {
content: "]";
}
&:before,
&:after {
color: #16a085;
animation: flicker 3s infinite;
}
}
```
# Dark Mode
```CSS
@media(prefers-color-scheme:dark) {
:root {
color-scheme: dark;
}
}
```