-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (102 loc) · 2.76 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
text-align: center;
font-size: 150%;
}
input {
margin: 5px;
}
input.input_field {
padding: 5px;
font-size: 16px;
border-width: 2px;
border-color: #84c769;
background-color: #ffffff;
color: #000000;
border-style: outset;
border-radius: 12px;
box-shadow: 0px 0px 8px rgba(20,165,72,.75);
text-shadow: -50px 0px 0px rgba(66,66,66,.0);
}
input.input_field:focus {
outline:none;
}
button {
margin: 10px;
}
button.submit_button {
-moz-box-shadow:inset 0px 1px 0px 0px #a4e271;
-webkit-box-shadow:inset 0px 1px 0px 0px #a4e271;
box-shadow:inset 0px 1px 0px 0px #a4e271;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #89c403), color-stop(1, #77a809));
background:-moz-linear-gradient(top, #89c403 5%, #77a809 100%);
background:-webkit-linear-gradient(top, #89c403 5%, #77a809 100%);
background:-o-linear-gradient(top, #89c403 5%, #77a809 100%);
background:-ms-linear-gradient(top, #89c403 5%, #77a809 100%);
background:linear-gradient(to bottom, #89c403 5%, #77a809 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#89c403', endColorstr='#77a809',GradientType=0);
background-color:#89c403;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #74b807;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:15px 40px;
text-decoration:none;
text-shadow:0px 1px 0px #528009;
}
button.submit_button:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #89c403));
background:-moz-linear-gradient(top, #77a809 5%, #89c403 100%);
background:-webkit-linear-gradient(top, #77a809 5%, #89c403 100%);
background:-o-linear-gradient(top, #77a809 5%, #89c403 100%);
background:-ms-linear-gradient(top, #77a809 5%, #89c403 100%);
background:linear-gradient(to bottom, #77a809 5%, #89c403 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77a809', endColorstr='#89c403',GradientType=0);
background-color:#77a809;
}
button.submit_button:active {
position:relative;
top:1px;
}
table.data_table {
width: 100%;
background-color: #FFFFFF;
border-collapse: collapse;
border-width: 2px;
border-color: #1F7515;
border-style: solid;
color: #000000;
}
table.data_table td, table.data_table th {
border-width: 2px;
border-color: #1F7515;
border-style: solid;
padding: 5px;
}
table.data_table thead {
background-color: #84BD04;
}
.data_inputs{
margin: auto;
width: 16%;
padding: 10px;
text-align: right;
}
.numbers_form {
display: inline-block;
text-align: center;
}
.hidden {
display: none;
}
.result_list{
margin: auto;
width: 16%;
padding: 10px;
text-align: center;
}