initial mockup
This commit is contained in:
commit
e16c0f9d1a
14 changed files with 618 additions and 0 deletions
86
style.css
Normal file
86
style.css
Normal file
|
@ -0,0 +1,86 @@
|
|||
:root {
|
||||
--background-color: #922950;
|
||||
--text-color: #922950;
|
||||
--border-color: #ce3e6b;
|
||||
--content-background-color: #fe76b0;
|
||||
background-color: var(--background-color);
|
||||
image-rendering: pixelated;
|
||||
image-rendering: crisp-edges;
|
||||
image-rendering: -moz-crisp-edges;
|
||||
image-rendering: -o-crisp-edges;
|
||||
}
|
||||
|
||||
.block {
|
||||
background-color: var(--content-background-color);
|
||||
color: var(--text-color);
|
||||
font-size: 24px;
|
||||
width: 75%;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 10%;
|
||||
padding: 40px;
|
||||
border: 4px solid var(--border-color);
|
||||
box-shadow: var(--border-color) 10px 10px;
|
||||
}
|
||||
main {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
#menu {
|
||||
width: 80%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
}
|
||||
nav {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
}
|
||||
nav ul {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
list-style-type: none;
|
||||
}
|
||||
nav ul li {
|
||||
margin: 0 20px;
|
||||
}
|
||||
nav ul li a {
|
||||
text-decoration: none;
|
||||
color: var(--text-color);
|
||||
font-size: 24px;
|
||||
}
|
||||
nav ul li a:hover {
|
||||
color: var(--border-color);
|
||||
}
|
||||
#pageContent {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 80%;
|
||||
justify-content: center;
|
||||
}
|
||||
#content {
|
||||
width: 50%;
|
||||
height: fit-content;
|
||||
overflow-y: auto;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: normal;
|
||||
word-break: break-word;
|
||||
hyphens: none;
|
||||
|
||||
}
|
||||
#image {
|
||||
width: 50%;
|
||||
height: 120vh;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
#image img {
|
||||
height: 100%;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue