-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
93 lines (75 loc) · 1.4 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
body{
background: url('images/subway-lines.png');
background-size: 400px;
color: #444444;
font-family: 'Karla', sans-serif;
}
.highlight{
background-color: rgb(255, 248, 166);;
padding: 4px;
border-radius: 2px;
color: #444444;
}
h2{
font-family: 'Rubik', sans-serif;
}
.container{
display: flex;
}
.grid-8{
/* width: calc((100vw/12) * 3); */
}
.grid-4{
width: calc((100vw/12) * 8);
background-color: #fff;
padding: 10px;
border-radius: 10px;
min-height: 80vh;
display: block;
margin: auto auto;
}
.calculator h2{
text-align: center;
}
.inflation-output{
background-color: rgb(123, 239, 178);
color: rgb(46, 49, 49);
padding: 20px;
margin: 5px;
border-radius: 4px;
margin-top: 30px;
}
.read-more{
font-size: smaller;
color: rgb(191, 191, 191);
}
.read-more a{
color: rgb(191, 191, 191);
}
#amount_cals_done{
background-color: red;
padding-left: 5px;
padding-right: 5px;
border-radius: 3px;
margin: 2px;
color: #fff;
}
input{
padding: .5em .6em;
display: inline-block;
border: 1px solid #ccc;
box-shadow: inset 0 1px 3px #ddd;
border-radius: 4px;
vertical-align: middle;
box-sizing: border-box;
}
label{
text-align: right;
display: inline-block;
vertical-align: middle;
width: 10em;
margin: 0 1em 0 0;
}
.form-group{
margin-bottom: 5px;
}