Links
Links to useful stuff...
- CSS Layout
- Alt Code Unicode
- Codepen coding playground.
- W3 Schools
- Character sets @ W3 schools.
- UTF-8 Symbol codes
- CSS Selectors
- Lapa Ninja
- Land-Book
- Yusuf Ozturk
- Dribble
- Code My UI
- Hakim
- You don’t need JS
View the CSS for this page
#links {
display:grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 15px;
/* flex-wrap: wrap; */
}
#links ul {
list-style-type: none;
margin:0;
padding:0;
font-size: 90%;
}
#links > div {
padding:20px 20px 1em 0;
}
.done {
color:#aaa;
}
.done::after {
content:"- done";
color: #888;
}
#links > div::before {
content: attr(id);
text-transform: capitalize;
font-weight: bold;
color: black;
text-decoration: underline;
}
.svg-light {
fill: var(--container-bg);
width: 35px; height: 35px;
}