-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalcStyling.css
More file actions
76 lines (68 loc) · 1.26 KB
/
Copy pathcalcStyling.css
File metadata and controls
76 lines (68 loc) · 1.26 KB
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
input[type="button"] {
padding: 15px 25px;
font-size: 24px;
text-align: center;
cursor: pointer;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
min-width: 100%;
max-width: 100%;
margin: 4px;
}
input[type="button"]:hover {
background-color: #3e8e41
}
input[type="button"]:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
input[type="text"] {
padding: 15px 0px;
font-size: 24px;
text-align: center;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
min-width: 100%;
margin: 4px;
}
#resultInWords {
padding: 15px 0px;
font-size: 24px;
text-align: center;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
min-width: 100%;
max-width: 100%;
margin: 4px;
}
select {
-webkit-appearance: menulist-button;
width: 100%;
min-height:100%;
color: #fff;
background-color: #4CAF50;
font-size: 24px;
text-align: center;
cursor: pointer;
padding: 15px 25px;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
margin: 4px;
}
option {
height:50%;
}