parent
f15b98d09a
commit
2ec2f70772
9 changed files with 103 additions and 168 deletions
|
@ -1,78 +1 @@
|
|||
.container {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
|
||||
.title a {
|
||||
color: var(--def-orange);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title a:hover,
|
||||
.title a:focus,
|
||||
.title a:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.code {
|
||||
background: var(--black-1e);
|
||||
border-radius: 5px;
|
||||
padding: 0.75rem;
|
||||
font-size: 1.1rem;
|
||||
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
|
||||
Bitstream Vera Sans Mono, Courier New, monospace;
|
||||
}
|
||||
|
||||
.contentcardstatic {
|
||||
margin: 1rem;
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
border: 1px solid var(--black-2d);
|
||||
border-radius: 10px;
|
||||
border-color: var(--def-blue);
|
||||
transition: color 0.15s ease, border-color 0.15s ease;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.contentcard:hover,
|
||||
.contentcard:focus,
|
||||
.contentcard:active {
|
||||
color: var(--def-orange);
|
||||
border-color: var(--def-orange);
|
||||
}
|
||||
|
||||
.contentTitle {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.contentTitle h2 {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.contentIcon {
|
||||
object-fit: "contain";
|
||||
margin-right: 0.4rem;
|
||||
position: relative;
|
||||
aspect-ratio: 1;
|
||||
height: 1.5rem;
|
||||
}
|
||||
|
||||
.cardwarn {
|
||||
color: var(--def-orange);
|
||||
}
|
||||
|
||||
.logo {
|
||||
height: 1em;
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.grid {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,27 +1 @@
|
|||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
||||
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--black-0f: #0f0f0f;
|
||||
--black-1e: #1e1e1e;
|
||||
--black-2d: #2d2d2d;
|
||||
|
||||
--def-blue: #00aaff;
|
||||
--def-orange: #ff5300;
|
||||
--def-red: #ff0000;
|
||||
--def-green: #00ff00;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue