-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (76 loc) · 1.58 KB
/
style.css
File metadata and controls
97 lines (76 loc) · 1.58 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
body {
color: white;
background-color: #4F8BF9;
}
.container {
height: 500px;
}
.stButton>button {
background-image: linear-gradient( to right bottom, #47E6B1, #47E6C9);
color: white;
}
.stButton>button:focus:not(:active) {
border-color: #ffffff;
box-shadow: none;
color: #ffffff;
background-color: #0066cc;
}
.stButton>button:focus(:active) {
border-color: white;
box-shadow: none;
color: white;
background-color: #0066cc;
}
.stButton>button:focus(:active){
background-color: #0066cc;
border-color: white;
box-shadow: none;
color:white;
background-color: #0066cc;
}
.stHeader {
color: #4F8BF9;
}
.stButton>button:hover{color:white;}
.stButton>button:focus{color:white;}
.chat {
width: 300px;
display: flex;
flex-direction: column;
padding: 10px;
}
.messages {
margin-top: 30px;
display: flex;
flex-direction: column;
}
.message {
border-radius: 0.1%;
padding: 10px 17px;
margin-top: 5px;
margin-bottom: 5px;
display: inline-block;
}
.yours {
align-items: flex-start;
}
.yours .message {
border-radius: 5%;
margin-right: 25%;
color: white;
background-color: #47E6B1;
position: relative;
}
.mine {
align-items: flex-end;
}
.mine .message {
border-radius: 5%;
color: white;
margin-left: 25%;
background: linear-gradient(to bottom, #00D0EA 0%, #0085D1 100%);
background-attachment: fixed;
position: relative;
}
.stTextInput>div>div>input {
}