-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
108 lines (94 loc) · 3.83 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blitzboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<title>Blitzboard - By 2K inc.</title>
<meta name="description" content="Blitzboard: Team management, and more.">
<style>
@font-face {
font-family: "Product Sans";
src: url("ProductSans-Regular.woff") format('woff');
}
body {
--mdc-theme-primary: #4444ff;
font-family: 'Roboto', sans-serif;
padding: 0;
margin: 0;
}
.productsans {
font-family: 'Product Sans', 'Roboto', sans-serif;
}
#hero {
padding-top: 80px;
padding-bottom: 15px;
text-align: center;
width: 100%;
color: white;
background: var(--mdc-theme-primary, #4444ff);
}
.mdc-top-app-bar__title {
margin-left: -12px;
}
::-webkit-scrollbar {
width: 16px;
background: #4444ff33;
border-radius: 1000px;
border: 4px white solid;
}
::-webkit-scrollbar-thumb {
border-radius: 1000px;
background: #4444ff66;
border: 4px white solid;
}
::-webkit-scrollbar-thumb:hover {
background: #4444ff;
}
#sign-in {
transition: all 0.3s;
}
#sign-in:hover {
color: #4444ff!important;
background: white;
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0,0,0,.12);
}
</style>
</head>
<body>
<header class="mdc-top-app-bar mdc-top-app-bar--fixed mdc-elevation--z4" style="position:fixed;top:0;left:0;">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<button class="material-icons mdc-top-app-bar__navigation-icon" id="menu">menu</button>
<img src="favicon.png" width="50">
<span class="mdc-top-app-bar__title productsans">Blitzboard</span>
</section>
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end">
<button id="sign-in" class="mdc-button mdc-button--outlined" style="color:white; border-color: white;" data-mdc-auto-init="MDCRipple"><i
class="material-icons mdc-button__icon">account_circle</i>#</button>
</section>
</div>
</header>
<div id="hero" class="mdc-theme--on-primary">
<span>
<img src="favicon.png" width=567>
<div class='mdc-typography--headline3 productsans'>Blitzboard</div>
</span>
<p>Team management, chat, and discussion made easy for everyone.</p>
<a href="dashboard" data-mdc-auto-init="MDCRipple"
class="mdc-button mdc-button--raised">Get started!</a>
</div>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script type="text/javascript">
mdc.autoInit();
var menuripl = mdc.ripple.MDCRipple.attachTo(document.querySelector('#menu'));
menuripl.unbounded = true;
</script>
</body>
</html>