-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
executable file
·58 lines (51 loc) · 884 Bytes
/
index.css
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
/*
AUTHOR: Fábio Pereira da Silva
YEAR: 2019
LICENSE: MIT
EMAIL: [email protected] or [email protected]
Adaptive Cards css style
*/
.typing-img {
margin-left: 30px;
width: 50px;
height: 50px;
}
.ac-pushButton
{
background-color: white; /* Green */
border: 2px solid #555555;
color: black;
padding: 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 10px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.ac-pushButton:hover {
background-color: #555555;
color: white;
}
.ac-textInput
{
min-width: 180px;
border: 2px solid #555555;
border-radius: 8px;
resize: none;
}
.ac-input
{
min-width: 180px;
min-height: 25px;
border: 2px solid #555555;
border-radius: 8px;
resize: none;
}
.ac-multiline
{
min-height:90px;
}