-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
208 lines (207 loc) · 5.55 KB
/
index.html
File metadata and controls
208 lines (207 loc) · 5.55 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="google-site-verification" content="3oiaCn57oUwItbPL48en11_oHCnCFeQB7mQDeeJCV9Y" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Project Intraweb is an open-sourced project that aims to provide everyone information, no matter if they are online or offline. You can even run it on your Raspberry Pi!">
<title>Project Intraweb</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
html, body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
padding-bottom: 15px;
background: #F2F3F7;
}
:root {
--primary-color: #0099ff;
--font-color: black;
--bg-color: white;
--shadow-color: rgba(0,0,0,0.2);
}
a {
text-decoration: none;
color:inherit;
}
.cont{
height: auto;
width: 100%;
max-width: 1100px;
margin-left: auto;
margin-right: auto;
position:relative;
}
h1 {
position: relative;
color: var(--font-color);
margin: 0;
font-size: 35px;
margin-top: 30px;
margin-left: 10px;
margin-bottom: 30px;
font-weight: 900px;
}
.logo {
background: red;
height: 75px;
width: 75px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
border-radius: 15px;
background-size: cover;
background-position: center;
display: inline-block;
}
h2 {
margin-left: 10px;
}
h3 {
position: relative;
color: var(--font-color);
font-size: 20px;
text-transform: uppercase;
display: inline-block;
margin-left: 5px;
}
h4 {
position: relative;
color: var(--font-color);
margin: 0;
display: inline-block;
font-size: 20px;
padding-left: 10px;
padding-bottom: 30px;
font-weight: 900px;
}
.card {
width: calc(92.5vw);
height: auto;
background: var(--bg-color);
contain: content;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 10px 16px 0 var(--shadow-color);
transition: 0.25s;
border-radius: 20px;
margin-bottom: 25px;
display: block;
}
.banner {
width: calc(92.5vw);
height: 75vh;
background-size: cover;
background-position: bottom;
contain: content;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
transition: 0.25s;
border-radius: 20px;
margin-bottom: 25px;
margin-top: 25px;
display: flex;
}
.banner .text {
align-self: flex-end;
color: white;
}
.card:hover{
transform: scale(1.025);
box-shadow: 0 20px 40px 0 var(--shadow-color);
}
.card:active{
transform: scale(.975);
box-shadow: 0 20px 40px 0 var(--shadow-color);
}
.divider {
display: inline-block;
height: 20px;
width: 3px;
position: relative;
border-radius: 30px;
background: #0099ff;
margin-left: 35px;
}
p {
margin-left: 7.5px;;
margin-right: 7.5px;
margin-bottom: 20px;
color: var(--font-color);
}
.container {
display: flex;
width: calc(92.5vw);
margin-left: auto;
justify-content: space-between;
margin-right: auto;
flex-flow: row wrap;
max-width: 1000px;
}
.flexcard h1 {
display: inline-block;
vertical-align:top
}
.flexcard {
height: auto;
background: var(--bg-color);
contain: content;
max-width: 450px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 10px 16px 0 var(--shadow-color);
transition: 0.25s;
border-radius: 20px;
margin-bottom: 25px;
flex: 50%;
}
@media (max-width: 1000px) {
.container {
flex-direction: column;
}
.flexcard {
width: calc(92.5vw);
max-width: 1000px;
}
}
.flexcard:hover{
transform: scale(1.025);
box-shadow: 0 20px 40px 0 var(--shadow-color);
}
.flexcard:active{
transform: scale(.975);
box-shadow: 0 20px 40px 0 var(--shadow-color);
}
</style>
</head>
<body>
<a class="card" style="background: #0099ff; margin-top: 30px;" href="https://github.com/Project-Intraweb/Intraweb">
<h1 style="color: white;">Project Intraweb</h1>
<h4 style="color:white;">View on Project Intraweb on Github.</h4>
</a>
<a class="card" href="https://github.com/Project-Intraweb/Intraweb">
<h2>About Project Intraweb</h2>
<p>At Project Intraweb, we want everyone to have access to information, no matter if they are online or offline. Project Intraweb aims to deliver content to areas with little to no internet connectivity. Click on this card view Project Intraweb on Github.</p>
</a>
<div class="card">
<h2>What is Project Intraweb?</h2>
<p>A library of programs that run on a Raspberry Pi. These programs help empower schools, communities, and companies that work online and offline.</p>
</div>
<div class="card">
<h2>What are the programs?</h2>
<p>Some programs included with Intraweb are:</p>
<ul>
<li>Gitlab</li>
<li>Nextcloud</li>
<li>PhET Simulations</li>
<li>Webmin</li>
<li>Plex</li>
<li>Rocket Chat</li>
<li>Zimply</li>
</ul>
</div>
</body>
</html>