-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
78 lines (68 loc) · 1.4 KB
/
styles.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
66
67
68
69
70
71
72
73
74
75
76
77
78
body {
font-family: Arial;
}
#fileupload {
display: none;
}
form {
display: table-row;
width: 40rem;
}
span[role="button"] {
display: table-cell;
font-size: 1rem;
padding: 8px 8px;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border: 2px solid #265986;
color: #ffffff;
cursor: pointer;
background-color: #265986;
outline: none;
}
span[role="button"]:hover,
span[role="button"]:focus {
-webkit-box-shadow: 0 0 6px #595959;
box-shadow: 0 0 6px #595959;
background-color: #183a57;
border-color: #265986;
outline: 2px solid transparent;
}
html.no-js span[role="button"] {
border-radius: 5px;
}
.hide {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
html.no-js .hide {
display: none;
}
input[type="text"] {
display: table-cell;
margin-left: -5px;
width: 20rem;
font-family: Arial;
font-size: 1rem;
padding: 8px 8px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border: 2px solid #265986;
color: #000000;
background-color: #ffffff;
}
html.no-js input[type="text"] {
display: none;
}
input[type="text"]:focus {
-webkit-box-shadow: 0 0 6px #595959;
box-shadow: 0 0 6px #595959;
border-color: #265986;
outline: 2px solid transparent;
}