minor change to gitignore to stop committing build files
This commit is contained in:
parent
45d611bf10
commit
287850b37e
15 changed files with 444 additions and 3 deletions
23
Resources/Static/LandingPageWireframe.css
Normal file
23
Resources/Static/LandingPageWireframe.css
Normal file
|
@ -0,0 +1,23 @@
|
|||
header{
|
||||
font-size: 3rem;
|
||||
margin-bottom: 2%;
|
||||
}
|
||||
|
||||
main{
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
section{
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.test{
|
||||
margin: 10 0 10 0;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.test a{
|
||||
text-dectration: underline;
|
||||
}
|
38
Resources/Static/LandingPageWireframe.html
Normal file
38
Resources/Static/LandingPageWireframe.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="LandingPageWireframe.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
Rosia Evans
|
||||
</header>
|
||||
<main>
|
||||
<h1>
|
||||
Welcome!
|
||||
</h1>
|
||||
<section>
|
||||
I'm Rosia Evans, this is my site where I log my work for myself and for me to show to
|
||||
others.
|
||||
</section>
|
||||
|
||||
<section>
|
||||
I'm currently studying at a small university in wales where I'm doing a BEng in
|
||||
software engineering whilst working on robotics and exploring my own interests
|
||||
on the side through various societies. I've previously had interests in VR and XR
|
||||
and UI design, spending a lot of my secondary school years experimenting with both
|
||||
concepts.
|
||||
</section>
|
||||
|
||||
<section>
|
||||
See more about my work here:
|
||||
|
||||
<div class="test">
|
||||
<a href="/Example_Post.html">Work</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
</main>
|
||||
<div>
|
||||
</body>
|
||||
</html>
|
58
Resources/Static/Wireframe.css
Normal file
58
Resources/Static/Wireframe.css
Normal file
|
@ -0,0 +1,58 @@
|
|||
h1{
|
||||
color: black;
|
||||
}
|
||||
|
||||
header{
|
||||
font-size: 3rem;
|
||||
margin-bottom: 2%;
|
||||
}
|
||||
|
||||
main{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
nav{
|
||||
margin-right: 5%;
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
nav a{
|
||||
text-decoration: underline;
|
||||
color: black;
|
||||
}
|
||||
nav a:visited{
|
||||
color: black;
|
||||
}
|
||||
|
||||
nav a:hover{
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
nav h1{
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
nav h2{
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
article{
|
||||
width: 40rem;
|
||||
}
|
||||
|
||||
ul{
|
||||
list-style-type: "- ";
|
||||
}
|
||||
|
||||
pre
|
||||
{
|
||||
background-color: lightgray;
|
||||
padding: 3px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
img{
|
||||
width: 50%;
|
||||
margin-top: 10px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue