-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (118 loc) · 3.34 KB
/
index.html
File metadata and controls
126 lines (118 loc) · 3.34 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lato:400,900&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
color:#e8e6e3;
}
.fact-box {
font-family: Lato;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding:10px 200px 10px 200px;
}
.fact-box:nth-child(odd) {
background-color: #252729;
}
.fact {
margin: 5px;
width: 100%;
display: grid;
grid-template-columns: 2fr 8fr;
align-items: center;
justify-items: center;
padding: 10px;
font-size: 35px;
}
.fact > .img > img {
max-height: 250px;
max-width: 250px;
min-height: 250px;
min-width: 250px;
border-radius: 50px;
}
.fact > .desc {
margin: 10px;
}
#home-page-banner {
font-family: Lato, sans-serif;
display: grid;
font-weight: bolder;
grid-template-rows: 150px 250px;
justify-items: center;
align-items: center;
height: 80vh;
width: 100%;
background-color: #181a1b;
background-position: 0% 100%;
}
#home-page-banner .title {
text-align: center;
font-size: 200px;
font-weight: bold;
padding-top:400px;
}
#home-page-banner .desc {
text-align: center;
font-size: 50px;
font-weight: bold;
}
</style>
</head>
<body>
<div id="tab-container"></div>
<div id="home-page-banner">
<div>
<div class="title">TimeTract</div>
<div class="desc"></div>
<div class="desc">Accountability at its peak.</div>
</div>
</div>
<div id="content">
<div class="fact-box">
<div class="fact">
<div class="img">
<img src="images/clock.png">
</div>
<div class="desc">
Accountability at its peak. Keep yourself accountable. Stop wasting time.
</div>
</div>
<div class="fact">
<div class="img">
<img src="images/rescue_time_dark.png">
</div>
<div class="desc">
Built on the popular RescueTime API.
</div>
</div>
<div class="fact">
<div class="img">
<img src="images/trophy.png">
</div>
<div class="desc">
Compete with your friends - work together to achieve productivity
</div>
</div>
<div class="fact">
<div class="img">
<img src="images/free.jpg">
</div>
<div class="desc">
Free and Open Source - you can trust us
</div>
</div>
<div class="fact">
<div class="img"></div>
<div class="desc">
<a href="accounts/create_account.html" style="color:white">Sign up</a> or <a href="accounts/login_account.html" style="color:white">Sign in</a>
</div>
</div>
</div>
</div>
</body>
</html>