Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Echo First Pass #49

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/Avatar1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/AvatarAnimeVer2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
165 changes: 165 additions & 0 deletions images/OMIGroupLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 66 additions & 76 deletions images/omi-bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
<button class="sidebar-button" title="Toggle Sidebar"></button>
<a class="header-title" href="/">
<div class="logo">
<img src="images/omi-logo-small.svg" alt="OMI Logo">
<span><strong>OMI</strong>group</span>
<img src="images/OMIGroupLogo.svg" alt="OMI Logo">
</div>
</a>
<nav class="header-nav">
Expand Down Expand Up @@ -58,6 +57,7 @@
<div class="container">
<section class="title-section">
<h1>Open Metaverse Interoperability Group</h1>
<!-- <img class="avatar-1" src="./images/Avatar1.png" alt="Avatar"> -->
<h3>We bolster the metaverse as an open and interoperable resource for anyone, inspired by the collaborative efforts of the community</h3>
<h2>Get Involved</h2>
<div class="title-section-nav">
Expand Down Expand Up @@ -88,6 +88,7 @@ <h5>
</section>

<section class="values-section">
<img class="omi-bg" src="/images/omi-bg.svg" alt="OMI Logo Background">
<h2>Our Values</h2>
<ul>
<li>
Expand Down Expand Up @@ -146,8 +147,7 @@ <h4>Open Collective</h4>
<footer>
<h3>We can create a better, more open internet if we <i>build together.</i></h3>
<div class="logo">
<img src="images/omi-logo-small.svg" alt="OMI Logo">
<span><strong>OMI</strong>group</span>
<img src="images/OMIGroupLogo.svg" alt="OMI Logo">
</div>
</footer>
</div>
Expand Down
61 changes: 42 additions & 19 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body {
font-family: 'Source Sans Pro', sans-serif;
font-family: "Source Sans Pro", sans-serif;
}

h1 {
Expand All @@ -13,7 +13,7 @@ h2 {
}

h3 {
font-size: 36px;
font-size: 40px;
font-weight: 300;
}

Expand All @@ -23,12 +23,12 @@ h4 {
}

h5 {
font-size: 32px;
font-size: 24px;
font-weight: 300;
}

p {
font-size: 24px;
font-size: 18px;
}

section {
Expand All @@ -55,7 +55,7 @@ section {
}

.button.primary {
background-color: #7A71F6;
background-color: #7a71f6;
color: white;
}

Expand All @@ -82,19 +82,12 @@ header {
.logo {
display: flex;
align-items: center;
font-size: 48px;
color: black;
font-weight: 200;
}

.logo img {
margin-right: 9px;
}

.logo strong {
font-weight: 700;
}

.header-nav ul {
display: flex;
list-style: none;
Expand All @@ -108,15 +101,28 @@ header {
.header-button {
text-decoration: none;
color: black;
padding: 14px 16px;
padding: 10px 16px;
font-size: 18px;
background-image: url(./images/button-bg.svg);
background-repeat: no-repeat;
background-position: bottom left;
}
.header-button:hover {
transition-duration: 1s;
color: white;
border-radius: 30px;
box-shadow:
/* inner white */ inset 20px 0 80px #9a30ea,
/* inner left magenta short */ inset -30px 0 80px #0ff,
/* inner right cyan short */ inset 30px 0 300px #9a30ea,
/* inner left magenta broad */ inset -30px 0 300px #0ff,
/* inner right cyan broad */ 0 0 300px #fff,
/* outer white */ -20px 0 70px #9a30ea,
/* outer left magenta */ 10px 0 70px #0ff;
/* outer right cyan */
}

.sidebar-button {

}

.sidebar {
Expand All @@ -128,7 +134,8 @@ header {
}

@media (min-width: 750px) {
.sidebar, .sidebar-button {
.sidebar,
.sidebar-button {
display: none;
}
}
Expand All @@ -145,8 +152,16 @@ header {
margin-left: 24px;
}

.avatar-1 {
display: flex;
position: absolute;
top: 50%;
bottom: 0;
right: 85%;
z-index: -1;
}
.partner-section {
margin: 140px 0;
margin: 80px 0;
}

.get-involved-section h2 {
Expand All @@ -159,15 +174,23 @@ header {
background-image: url(./images/section-bg.png);
background-repeat: no-repeat;
background-size: cover;
padding: 140px 0;
padding: 96px 0;
}

.get-involved-section .column > * {
margin: 0;
}

.values-section {
margin: 169px 0;
margin: 80px 0;
}

.omi-bg {
display: fixed;
position: absolute;
max-width: 1024px;
isolation: isolate;
z-index: -1;
}

.values-section ul {
Expand All @@ -193,7 +216,7 @@ header {
display: flex;
flex-direction: column;
max-width: 322px;
height: 350px;
height: 250px;
justify-content: space-between;
}

Expand Down