forked from ceyhunozgun/awsAIChromeExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.css
57 lines (53 loc) · 989 Bytes
/
extension.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
/*
// CSS file for AWS AI Services Chrome Extension
// Ceyhun OZGUN
// August 2018
// https://github.com/ceyhunozgun/awsAIChromeExtension
*/
.awsAIExt_center {
width: 400px;
margin: 0 auto;
position: relative;
text-align: center;
padding: 4px;
font-family: Verdana;
font-size: 18px;
}
.awsAIExt_center textarea {
padding: 4px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
font-family: Verdana;
font-size: 18px;
vertical-align: middle;
}
.awsAIExt_center select {
padding: 4px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
font-family: Verdana;
font-size: 18px;
width: 40%;
}
.awsAIExt_center button {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
vertical-align: middle;
font-size: 20px;
padding: 8px;
margin: 8px;
}
.awsAIExt_spkr {
width: 32px;
height: 32px;
border: 1px solid white;
vertical-align: middle;
}
.awsAIExt_spkr:hover {
border: 1px solid gray;
}