Skip to content

Commit fc96011

Browse files
Initial commit
0 parents  commit fc96011

25 files changed

+20567
-0
lines changed

cache/CACHE.DAT

1 MB
Binary file not shown.

cache/cache.lck

47 Bytes
Binary file not shown.

csp/css/bootstrap-theme.css

Lines changed: 587 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap-theme.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap-theme.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap-theme.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap.css

Lines changed: 6757 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/bootstrap.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

csp/css/index.css

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
body {
2+
3+
margin: 0;
4+
5+
padding: 0;
6+
7+
text-align: center;
8+
9+
}
10+
11+
12+
13+
.header {
14+
15+
font-family: bold;
16+
17+
margin: 0;
18+
19+
padding: 6px;
20+
21+
}
22+
23+
24+
25+
.messages {
26+
27+
display: inline-block;
28+
29+
padding-bottom: 30px; /* 24 + 6 px */
30+
31+
text-align: left;
32+
33+
}
34+
35+
36+
37+
.message {
38+
39+
margin: 6px;
40+
41+
}
42+
43+
44+
45+
.message .avatar {
46+
47+
float: left;
48+
49+
width: 36px;
50+
51+
height: 36px;
52+
53+
background-size: 100%;
54+
55+
background-repeat: no-repeat;
56+
57+
border-radius: 18px;
58+
59+
margin-top: 4px;
60+
61+
}
62+
63+
64+
65+
.message .body {
66+
67+
overflow: hidden;
68+
69+
position: relative;
70+
71+
margin-left: 42px;
72+
73+
}
74+
75+
76+
77+
.message .text {
78+
79+
display: inline-block;
80+
81+
padding: 6px;
82+
83+
background-color: #b5f0ff;
84+
85+
border-radius: 24px;
86+
87+
}
88+
89+
90+
91+
.message .text:before, .message .text:after {
92+
93+
content: " ";
94+
95+
}
96+
97+
98+
99+
.message .headline {
100+
101+
font-size: 9pt;
102+
103+
}
104+
105+
106+
107+
.message .name {
108+
font-weight: bold;
109+
}
110+
111+
112+
.input {
113+
display: block;
114+
position: fixed;
115+
bottom: 6px;
116+
left: 6px;
117+
right: 6px;
118+
width: calc(100% - 12px);
119+
box-sizing: border-box;
120+
background: #eee;
121+
padding: 3px 6px;
122+
border: 1px solid #ccc;
123+
border-radius: 12px;
124+
height: 24px;
125+
line-height: 24px;
126+
font: inherit;
127+
outline: none;
128+
}

csp/css/tether.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
19.7 KB
Binary file not shown.

csp/fonts/glyphicons-halflings-regular.svg

Lines changed: 288 additions & 0 deletions
Loading
44.3 KB
Binary file not shown.
22.9 KB
Binary file not shown.
17.6 KB
Binary file not shown.

csp/img.png

640 KB
Loading

csp/index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Chat 4 Fun</title>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
7+
<link type="text/css" rel="stylesheet" href="./css/index.css"/>
8+
<link rel="stylesheet" href="./css/bootstrap.min.css">
9+
<script type="text/javascript" src="./js/index.js"></script>
10+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
11+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
12+
</head>
13+
14+
<body background="img.png">
15+
<h1 class="header" style="color: white">Chat 4 Fun</h1>
16+
<div class="messages"></div>
17+
<input class="input" type="text"/>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)