working on v4

This commit is contained in:
2023-03-05 02:06:45 +01:00
parent 999e7e404b
commit 83bde93db5
11 changed files with 176 additions and 43 deletions

36
v4/css/home.css Normal file
View File

@@ -0,0 +1,36 @@
.home {
font-family: 'Source Code Pro', monospace;
background: black;
color: white;
font-size: 1.2rem;
height: 100vh
max-height: -webkit-fill-available;
max-width: 100vw;
overflow: hidden;
}
.home section {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
}
.home a {
color: lightblue;
cursor: pointer;
text-decoration: underline;
}
#pgp {
cursor: pointer;
}
#pgpmobile {
display: none;
}
@media (max-width: 600px) {
#pgp {
display: none;
}
#pgpmobile {
display: inline-block;
}
}

View File

@@ -4,9 +4,27 @@
box-sizing: border-box;
}
.nav {
body {
display: flex;
background: red;
flex-direction: column;
min-height: 100vh;
}
.nav {
display: flex;
border: 1px solid red;
padding: 1rem;
justify-content: space-between;
}
.content {
border: 1px solid green;
padding: 2rem 5rem;
}
footer {
display: flex;
justify-content: center;
align-items: center;
align-self: flex-end;
}