forked from luiesa/GlycemicIndex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (100 loc) · 1.54 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
html, body {
background-color: #caccce;
margin-top: 45px;
}
.mainContainer {
display: flex;
justify-content: center;
}
.mainContainer > div {
flex: 1; /*grow*/
}
.leftContainer {
text-align: right;
}
.rightContainer {
text-align: left;
padding-right: 30px;
}
.gindex {
border-radius: 3px;
font-size: 18px;
padding: 4px 6px 4px 6px;
margin-top: 1px;
position: relative;
left: 1px;
overflow: hidden;
}
.gindex-low {
background-color: #009933;
}
.gindex-medium {
background-color: #ff9933;
}
.gindex-high {
background-color: #cc0000;
}
.displayedIndex {
position: absolute;
right: 4px;
}
.displayedName {
padding-right: 3px;
overflow: hidden;
float: left;
width: 97%;
line-height: normal;
}
.myheader {
text-align: center;
margin-bottom: 80px;
margin-top: 55px;
background-color: #caccce;
}
.input-group {
width: 92%;
margin:0 auto;
margin-bottom: 80px;
}
.results-container {
width: 92%;
margin:0 auto;
}
.glyphicon {
color: red;
}
#textInput {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
text-indent: 15px;
}
.footerContainer {
position: fixed;
bottom: 0px;
width: 100%;
text-align: center;
padding-top: 5px;
font-size: 12px;
opacity: 1;
background-color: #caccce;
}
.dot {
border-radius: 50%;
width: 35px;
height: 35px;
margin-right: 5px;
}
.dot-greenDot {
color: #009933;
background-color: #009933;
}
.dot-orangeDot {
color: #ff9933;
background-color: #ff9933;
}
.dot-redDot {
color: #cc0000;
background-color: #cc0000;
}