-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylin.css
More file actions
103 lines (89 loc) · 1.51 KB
/
Copy pathstylin.css
File metadata and controls
103 lines (89 loc) · 1.51 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
.container h1 {
font-size: 80px;
font-family: 'Exo 2';
display: inline;
}
.container i {
margin-top: 20px;
margin-right: 20px;
}
h3 {
font-family: 'Open Sans';
margin-bottom: 20px;
}
.top {
cursor: pointer;
}
.top:hover .git-icon{
color: #2E9AFE;
}
.git-icon {
font-size: 100px;
color: black;
transition: color .3s ease-in-out;
}
#text-input {
height: 40px;
font-size: 25px;
}
#chat-box {
height: 300px;
overflow-y: auto;
overflow-x: hidden;
margin: 0 auto 0px;
background-color: rgb(219,223,231);
border-radius: 5px;
}
.user-chat-query, .george-chat-response {
font-size: 18px;
font-family: tahoma;
padding: 10px 20px 0;
}
.chat-padding-top {
padding-top: 10px;
}
.chat-padding-bottom {
padding: 10px 0;
}
.bubble-1 {
position: relative;
display: inline-block;
padding: 5px 10px 5px;
background: rgb(167,203,243);
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
.bubble-1:after {
content: '';
position: absolute;
border-style: solid;
border-width: 9px 0 9px 15px;
border-color: transparent rgb(167,203,243);
display: block;
width: 0;
z-index: 1;
right: -10px;
top: 5px;
}
.bubble-2 {
position: relative;
display: inline-block;
padding: 5px 10px 5px;
background: #FFFFFF;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
.bubble-2:after {
content: '';
position: absolute;
border-style: solid;
border-width: 9px 15px 9px 0;
border-color: transparent #FFFFFF;
display: block;
width: 0;
z-index: 1;
left: -10px;
top: 5px;
}