Skip to content
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
68 changes: 68 additions & 0 deletions website/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
@import url("https://fonts.googleapis.com/css?family=Roboto:300");

html {
margin: 0;
padding: 0;
}

body {
font-family: "Roboto", sans-serif;
background-color: #efe8f2;
}

.home {
position: absolute;
top: 50%;
left: 30%;
transform: translate(-30%, -50%);
}

.home__container {
display: flex;
flex-direction: column;
}

.home__title {
font-size: 2rem;
padding-bottom: 20px;
}

.home__subtitle {
font-size: 1rem;
padding-bottom: 10px;
}

.home__wrapper {
display: flex;
flex-direction: column;
margin-bottom: 30px;
}

.home__button {
-webkit-box-shadow: 8px 9px 13px -12px rgba(0, 0, 0, 0.54);
-moz-box-shadow: 8px 9px 13px -12px rgba(0, 0, 0, 0.54);
box-shadow: 8px 9px 13px -12px rgba(0, 0, 0, 0.54);
letter-spacing: 1px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.5s ease;
text-transform: uppercase;
outline: none;
background-color: #ecb32c;
color: #fff;
padding: 20px 25px;
font-size: 16px;
width: 50%;
text-decoration: none;
text-align: center;
}

.home__button:hover {
background-color: #f0c45b;
}

@media screen and (max-width: 560px) {
.home__button {
width: 100%;
}
}
Binary file added website/favicon.ico
Binary file not shown.
40 changes: 40 additions & 0 deletions website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Pin Tabs allows the user to pin one or more tabs for short periods, keep track of the expired tabs in the history and save energy"
/>
<meta name="keywords" content="Chrome, Pin Tabs, tab manager, unpin" />
<meta name="author" content="Pier Roberto Lucisano" />
<link rel="icon" href="http://www.pintabs.altervista.org/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<title>Pin Tabs</title>
</head>
<body>
<div class="home">
<div class="home__container">
<div class="home__wrapper">
<div class="home__title">Pin Tabs</div>
</div>
<div class="home__wrapper">
<div class="home__subtitle">
Pin Tabs allows the user to pin one or more tabs for short periods
</div>
<div class="home__subtitle">
and keep track of the expired tabs in the history
</div>
</div>
<div class="home__wrapper">
<a
class="home__button"
href="https://chrome.google.com/webstore/detail/pin-tabs-tab-manager/hhgfkccdcpjigagnmbfehocajjggifam?hl=en-US"
>Add to Chrome</a
>
</div>
</div>
</div>
</body>
</html>