-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (72 loc) · 1.6 KB
/
style.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
79
80
81
82
83
84
85
86
body {
font-weight: 400;
font-size: 15px;
color: #ffffff;
}
#container {
position: relative;
}
#wrapper {
min-height: 560px;
width: 820px;
margin:0 auto;
padding-top:50px;
}
#form {
margin:0px auto;
width: 500px;
background-color: white;
padding:20px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
#wrapper input[type="text"],#wrapper input[type="submit"], #wrapper input[type="button"] {
outline: none;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
#wrapper input[type="text"] {
width: 650px;
margin:4px 0px 10px 0px;
padding: 10px 10px 10px 10px;
border: 1px solid #0069D9;
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
-moz-box-sizing : content-box;
box-sizing : content-box;
}
#wrapper input[type="text"]:active,
#wrapper input[type="text"]:focus {
border: 1px solid #0069D9;
background: #FFFFFF;
-webkit-box-shadow: 4px 4px 4px #000;
-moz-box-shadow: 4px 4px 4px #000;
box-shadow: 4px 4px 4px #000;
}
#wrapper span.button input, #refresh {
height:35px;
width:100px;
cursor: pointer;
background-color: #0069D9;
padding: 8px 10px;
font-family: 'BebasNeueRegular','Arial Narrow',Arial,sans-serif;
color: #000;
font-size: 14px;
margin-top:10px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
border: none;
}
#input_text {
width:300px;
}
#progress_bar {
text-align:center;
}
#script_status {
display:none;
}
.error {
color:red;
}