Skip to content

Commit

Permalink
feat(index): Added logo
Browse files Browse the repository at this point in the history
  • Loading branch information
gaiborjosue committed Dec 11, 2023
1 parent 37e9012 commit 153f49f
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 8 deletions.
Binary file added gfx/boostlet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 37 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
header {
background-color: #fff;
padding: 20px;
text-align: center;
}

.header-content {
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
}

h1 {
font-family: 'Roboto', sans-serif;
font-weight: 700;
font-size: 28px;
margin: 0;
}

.content {
Expand Down Expand Up @@ -55,13 +70,10 @@
background-color: black;
color: white;
border: none;
padding: 10px 20px;
padding: 10px 30px;
cursor: pointer;
border-radius: 10px;
font-family: 'Haettenschweiler', sans-serif;
font-weight: bolder;
font-size: 32px;
width: 240px;
width: 150px;
height: 60px;
}

Expand Down Expand Up @@ -152,6 +164,22 @@
display: block;
}

/* Responsive */
@media (max-width: 600px) {
.header-content {
flex-direction: column;
}

h1 {
font-size: 20px;
padding-top: 10px;
}

.logo {
height: 50px;
}
}

</style>
<script type="text/javascript">

Expand Down Expand Up @@ -244,9 +272,10 @@
</head>
<body>
<header>
<div class="logodiv">
<a href=''><button class="logo">BOOSTLET.js</button></a>&nbsp;&nbsp;&nbsp;<strong>image processing plugins for the web</strong>
</div>
<div class="header-content">
<a href='https://boostlet.org/'><img src='gfx/boostlet.png' alt='Logo' class='logo'></a>
&nbsp;&nbsp;&nbsp;&nbsp;<h1>image processing plugins for the web</h1>
</div>
</header>
<main>
<div class="content">
Expand Down

0 comments on commit 153f49f

Please sign in to comment.