-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (64 loc) · 1.2 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
body {
background-color: #222;
text-align:center;
margin:0;
font-family:helvetica,arial;
}
#_num, #_name, #_company, #_batch, #_email {
border:none;
background-color:transparent;
color: #eee;
font-size: 24px;
text-align: center;
width: 600px;
}
#_search, #_submit, #_clear, #_add {
margin-top: 10px;
background-color: rgba(255,255,255,0.4);
border-radius: 20px;
}
#_search {background-color: #9f0ac3;}
#_submit {background-color: #64a501;}
#_clear {background-color: #4b4b4b;}
#_add {background-color: #4b4b4b;}
.msg {
margin-top: 10px;
visibility:hidden;
}
.details {
/* visibility: hidden;*/
}
.on {
visibility:hidden;
opacity:0;
transition:visibility 0s ease-out 0.5s, opacity 0.5s ease-out;
}
.off {
visibility:visible;
opacity:1;
transition-delay:0s;
}
.site-wrapper {
display: table;
width: 100%;
height: 100%;
}
.site-wrapper-inner {
vertical-align: middle;
display: table-cell;
}
input[type="button"],
input[type="submit"]
{
outline:none;
}
input[type="button"]:focus,
input[type="submit"]:focus
{
outline:none;
}
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner
{
border: 0;
}