Moving badges to theme, fixing bug with links not being clickable, adding disclaimer to apps for distribution icons.

This commit is contained in:
Adsooi 2021-08-03 14:59:16 +02:00
parent 1171b352c5
commit 29770627da
No known key found for this signature in database
GPG key ID: 9C87C7D3A69E6BBE
40 changed files with 3375 additions and 43 deletions

View file

@ -21,11 +21,13 @@
color: black;
cursor: pointer;
width: -moz-fit-content;
height: -moz-fit-content;
width: fit-content;
height: fit-content;
&.primary, &.secondary {
padding: 0.5em;
margin: 0.1em;
text-transform: uppercase;
font-size: larger;
@ -42,6 +44,13 @@
box-shadow: 0px 0px 8px 0px #000000;
filter: brightness(90%);
}
& a, &:not(div) {
text-decoration: none;
display: inline-block;
color: black;
padding: 0.5em;
}
}
}

View file

@ -61,6 +61,11 @@
}
}
*/
.shadowed {
filter: drop-shadow(0 0 1px rgba(0, 0, 0, .6));
}
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "omegicons";
font-style: normal;
@ -87,7 +92,7 @@
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3);
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-windows:before { content: '\e800'; } /* '' */

View file

@ -33,6 +33,13 @@
color: white;
}
p, .text-content {
p, .text-content, ul {
line-height: 1.5em;
}
code, .code {
font-family: monospace;
padding: 0.5em;
margin-bottom: 0.5em;
background: white;
}