-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.css
65 lines (58 loc) · 1.4 KB
/
plugin.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
58
59
60
61
62
63
64
65
.pluginContainer {
font-family: Arial;
padding: 10px;
}
h1 {
font-size: 20px;
font-weight: bold;
color: grey;
padding-bottom: 5px;
}
p {
padding-top: 5px;
padding-bottom: 5px;
}
input {
border: 1px solid #4676a9;
padding-left: 1px;
padding-right: 1px;
padding-top: 4px;
padding-bottom: 4px;
margin-top: 7px;
margin-bottom: 7px;
width: 75px;
}
input:hover {
border: 2px solid #c3e8f4;
padding-left: 0px;
padding-right: 0px;
padding-top: 3px;
padding-bottom: 3px;
margin-top: 7px;
margin-bottom: 7px;
outline: none;
}
input[type=button], input[type=submit] {
color: white;
background-color: #4676a9;
border: 1px solid #4676a9;
margin-top: 20px;
padding: 7px;
outline: none;
width: auto;
}
input[type=button]:hover, input[type=submit]:hover {
color: white;
background-color: #4676a9;
border: 2px solid #c3e8f4;
margin-top: 20px;
padding: 6px;
}
input[type=button]:focus, input[type=submit]:focus {
color: white;
background-color: #4676a9;
border: 2px solid #c3e8f4;
margin-top: 20px;
padding: 6px;
outline: none;
}