You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.2 KiB
78 lines
1.2 KiB
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
|
|
|
|
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;
|
|
font-size: 1.1em;
|
|
background-color: #1B1C22;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Dela Gothic One', cursive;
|
|
}
|
|
|
|
.link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
/* page structure */
|
|
.page {
|
|
min-height: 100vh;
|
|
background-color: #1B1C22;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.content {
|
|
padding: 2em 0;
|
|
gap: 2em;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
|
|
/* page elements */
|
|
.card {
|
|
border-radius: 10px;
|
|
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
padding: 2em;
|
|
color: white;
|
|
background-color: #25262C;
|
|
width: 100%;
|
|
flex-grow: 3;
|
|
}
|
|
|
|
|
|
/* mobile */
|
|
@media(max-aspect-ratio: 5/4) {
|
|
.content {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media(max-width: 1200px) {
|
|
.container {
|
|
width: 100%;
|
|
}
|
|
} |