startpage/style.css
2024-01-21 01:02:10 +01:00

87 lines
1.3 KiB
CSS

@font-face {
font-family: "Font";
src: url("./JetBrains.ttf");
}
html {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
}
body {
display: flex;
color: #a8c7fa;
background: #2d3340;
margin-right: 9em;
padding: 1em;
font-family: Font;
}
img {
height: 600px;
width: 350px;
margin-right: 2em;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
nav {
display: grid;
grid-row-gap: 1em;
grid-template-columns: 1fr 1fr;
min-width: 24em;
grid-auto-rows: max-content;
}
h1 {
font-size: 2.2em;
font-weight: 600;
grid-column: 1/-1;
text-align: center;
margin-bottom: 0;
}
h2 {
font-size: 1.2em;
font-weight: 600;
color: #c3cfe3;
grid-column: 1/-1;
text-align: center;
margin-bottom: 2.3em;
}
ul {
margin: 0;
padding: 0;
white-space: nowrap;
list-style-type: none;
}
li {
line-height: 1.4em;
margin-left: 4.8em;
}
li:first-child {
display: inline-block;
color: #5d80ab;
font-size: 1.5em;
font-weight: 600;
text-align: center;
line-height: 2em;
margin-left: 2.5em;
}
a {
color: #a8c7fa;
font-size: 1.1em;
text-decoration: none;
}
a:hover {
color: #c3cfe3;
font-style: italic;
}