forked from ellehallal/temperature-converter-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 742 Bytes
/
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
body{
margin-top: 60px;
text-align:center;
}
h1 {
padding-bottom: 0.5rem;
}
input[type=number] {
cursor: pointer;
}
#input-celsius{
background-color: #52DDCF;
font-size: 2.5rem;
}
#input-fahrenheit{
background-color: #16BAC5;
font-size: 2.5rem;
}
#input-kelvin{
background-color: #42a0d9;
font-size: 2.5rem;
}
.form-padding {
padding: 2rem 1rem;
}
::-webkit-input-placeholder {
color: #FFFFFF !important;
}
::-moz-placeholder {
color: #FFFFFF !important;
}
:-ms-input-placeholder {
color: #FFFFFF !important;
}
:-moz-placeholder {
color: #FFFFFF !important;
}
footer{
padding-top: 1.5rem;
font-size: 0.7rem;
line-height: 0.2rem;
text-align:center;
}
.icons{
max-width: 25px;
height: auto;
}