Skip to content

Commit 810e687

Browse files
committed
Server files added
0 parents  commit 810e687

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+11601
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
downloads
2+
img

.htaccess

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
RewriteEngine On
2+
RewriteCond %{HTTPS} off
3+
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AZwXXWPbQl6lb2i16Igc2hj_NWg_dT0P4Uqz74mRZVc.CSeEfnVQnILM1dx00nSlDo6C7F5EOZ0My432PYshjU4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Wvqv5ZjQlXKLiCeLc7T3GtOTEI5Xcfvz3WCOzNeOO_c.qlyY9Wilt_3-jpOml41-_QboB4izghBY2GHUfyPTpbM
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fq0Xt6q8NfhcjM9od1LH6NI2RJrqvaJznD_XakJ02tQ.vFZ28GWyHAdRX8SQHJTovwMnO8xnzQnhLStlK6cQvD4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
h-pkHqQ6_32mxBSmlDk0n4sQXhwZkN4W_BlrhN5898k.CSeEfnVQnILM1dx00nSlDo6C7F5EOZ0My432PYshjU4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sou7p6XeWENwSkCId4wvFmdjq29F8Lrv1vJiQA1fEFM.qlyY9Wilt_3-jpOml41-_QboB4izghBY2GHUfyPTpbM
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yVEUQN0_C8JMb3_h1VGz773gizaMb5aHrBs7GzHRqCM.vFZ28GWyHAdRX8SQHJTovwMnO8xnzQnhLStlK6cQvD4

404.shtml

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>File Not Found</title>
5+
<meta http-equiv="content-type" content="text/html; charset=utf-8" >
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<style type="text/css">
8+
body {
9+
background-color: #eee;
10+
}
11+
12+
body, h1, p {
13+
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
14+
font-weight: normal;
15+
margin: 0;
16+
padding: 0;
17+
text-align: center;
18+
}
19+
20+
.container {
21+
margin-left: auto;
22+
margin-right: auto;
23+
margin-top: 177px;
24+
max-width: 1170px;
25+
padding-right: 15px;
26+
padding-left: 15px;
27+
}
28+
29+
.row:before, .row:after {
30+
display: table;
31+
content: " ";
32+
}
33+
34+
.col-md-6 {
35+
width: 50%;
36+
}
37+
38+
.col-md-push-3 {
39+
margin-left: 25%;
40+
}
41+
42+
h1 {
43+
font-size: 48px;
44+
font-weight: 300;
45+
margin: 0 0 20px 0;
46+
}
47+
48+
.lead {
49+
font-size: 21px;
50+
font-weight: 200;
51+
margin-bottom: 20px;
52+
}
53+
54+
p {
55+
margin: 0 0 10px;
56+
}
57+
58+
a {
59+
color: #3282e6;
60+
text-decoration: none;
61+
}
62+
</style>
63+
</head>
64+
65+
<body>
66+
<div class="container text-center" id="error">
67+
<svg height="100" width="100">
68+
<polygon points="50,25 17,80 82,80" stroke-linejoin="round" style="fill:none;stroke:#ff8a00;stroke-width:8" />
69+
<text x="42" y="74" fill="#ff8a00" font-family="sans-serif" font-weight="900" font-size="42px">!</text>
70+
</svg>
71+
<div class="row">
72+
<div class="col-md-12">
73+
<div class="main-icon text-warning"><span class="uxicon uxicon-alert"></span></div>
74+
<h1>File not found (404 error)</h1>
75+
</div>
76+
</div>
77+
<div class="row">
78+
<div class="col-md-6 col-md-push-3">
79+
<p class="lead">If you think what you're looking for should be here, please contact the site owner.</p>
80+
</div>
81+
</div>
82+
</div>
83+
84+
</body>
85+
</html>

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ieeebitm19

color/default.css

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
a, a:hover {
2+
color: #00629B;
3+
}
4+
5+
6+
/* Back to top button */
7+
.back-to-top {
8+
background: #00629B;
9+
color: #fff;
10+
}
11+
12+
13+
.back-to-top:focus {
14+
background: #00629B;
15+
color: #fff;
16+
}
17+
18+
.back-to-top:hover {
19+
background: #019090;
20+
color: #fff;
21+
}
22+
23+
.navbar-default {
24+
background: #00629B;
25+
}
26+
27+
.form-control:focus {
28+
border-color: #00629B;
29+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px #00629B;
30+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px #00629B;
31+
}
32+
33+
.service .carousel-indicators .active {
34+
background: #00629B;
35+
}
36+
37+
.btn-theme {
38+
background: #00629B;
39+
}
40+
41+
.contact-widget i {
42+
color: #00629B;
43+
}

0 commit comments

Comments
 (0)