Skip to content

Commit 870674c

Browse files
author
Drew Volz
committedApr 16, 2015
Style
1 parent ebde575 commit 870674c

File tree

1 file changed

+205
-0
lines changed

1 file changed

+205
-0
lines changed
 

‎styles/bonAppStyle.css

+205
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
/*
2+
* Overall app style
3+
*/
4+
#bonApp {
5+
margin-top: 60px;
6+
margin-left:60px;
7+
width:300px;
8+
background:rgba(255,255,255, 0.5);
9+
border:2px solid rgba(000,000,000, 0.5);
10+
border-radius:10px;
11+
overflow:hidden;
12+
}
13+
14+
/*
15+
* Cafeteria selection
16+
*/
17+
#cafeSelection {
18+
display: none;
19+
height: 400px;
20+
}
21+
22+
#widgetSelectTitle {
23+
text-align:center;
24+
margin-top:12pt;
25+
padding-left: 10%;
26+
padding-right: 3pt;
27+
margin-bottom:0pt;
28+
height: auto;
29+
font-family: Helvetica;
30+
font-size: 25pt;
31+
font-weight:bold;
32+
color: rgba(117, 44, 44, 0.9);
33+
}
34+
35+
#queryWrapper {
36+
margin-top: 16pt;
37+
margin-left: auto;
38+
margin-right: auto;
39+
text-align: center;
40+
}
41+
42+
.queryBox {
43+
height: 16pt;
44+
width: 210px;
45+
}
46+
47+
#topRightIcon {
48+
position: absolute;
49+
margin-top: 0px;
50+
height: 35px;
51+
width: 35px;
52+
background-color: black;
53+
background-image: url('../img/search.png');
54+
background-repeat: no-repeat;
55+
border-bottom-right-radius: 2em;
56+
}
57+
58+
#search-label {
59+
display: block;
60+
font-size: 14px;
61+
font-weight: bold;
62+
}
63+
64+
#search-description {
65+
margin-top: -30px;
66+
padding-bottom: 20px;
67+
padding: 0;
68+
font-size: 11px;
69+
}
70+
71+
.ui-autocomplete {
72+
width: 152px;
73+
max-height: 90px;
74+
overflow-y: scroll;
75+
overflow-x: hidden;
76+
}
77+
78+
#spinnerImg {
79+
height: 30px;
80+
width: 30px;
81+
}
82+
83+
#spinner {
84+
display: none;
85+
margin-left: auto;
86+
margin-right: auto;
87+
text-align: center;
88+
margin-top: 20px;
89+
}
90+
91+
92+
/*
93+
* Menu
94+
*/
95+
#main {
96+
display: block;
97+
}
98+
99+
#updated {
100+
font-family: Helvetica;
101+
font-size: 12pt;
102+
color: rgba(000, 000, 000, 0.5);
103+
}
104+
105+
#date {
106+
height: auto;
107+
text-align:center;
108+
margin-bottom: 3pt;
109+
font-family: Helvetica;
110+
font-size: 15pt;
111+
font-weight:bold;
112+
color: black;
113+
}
114+
115+
#widgetTitle {
116+
text-align:center;
117+
margin-top:12pt;
118+
margin-left: 10pt;
119+
margin-right: 10pt;
120+
padding-left: 3pt;
121+
padding-right: 3pt;
122+
margin-bottom:0pt;
123+
height: auto;
124+
font-family: Helvetica;
125+
font-size: 25pt;
126+
font-weight:bold;
127+
color: rgba(117, 44, 44, 0.9);
128+
}
129+
130+
#myDietWrapper {
131+
margin-top: auto;
132+
padding-bottom: 5pt;
133+
border-bottom: solid 2px black;
134+
}
135+
136+
.myDiet {
137+
padding: 0;
138+
}
139+
140+
#description {
141+
margin-left:12pt;
142+
margin-right:12pt;
143+
font-family: American Typewriter;
144+
font-size: 12pt;
145+
line-height:18pt;
146+
max-height:10pt;
147+
overflow:hidden;
148+
hyphens: auto;
149+
}
150+
151+
#food {
152+
margin-top: 15px;
153+
height: auto;
154+
margin-left: 20px;
155+
padding-right: 10px;
156+
overflow-y: scroll;
157+
max-height: 450px;
158+
}
159+
160+
#footerBA {
161+
text-align: center;
162+
font-family: Helvetica;
163+
font-size: 9pt;
164+
margin-top: 12pt;
165+
margin-bottom: 12pt;
166+
color: rgba(000, 000, 000, 0.5);
167+
}
168+
169+
p {
170+
margin: 0 0 0 20px;
171+
}
172+
173+
hr {
174+
margin-top: -20px;
175+
border-width: 1px;
176+
color: black;
177+
border-style: solid;
178+
}
179+
180+
::-webkit-scrollbar {
181+
display: none;
182+
}
183+
184+
.e {
185+
height: 60pt;
186+
}
187+
188+
.event {
189+
font-size: 17pt;
190+
font-weight: bold;
191+
}
192+
193+
.meatStr {
194+
color: red;
195+
font-weight: bold;
196+
}
197+
198+
.noSelect {
199+
-webkit-touch-callout: none;
200+
-webkit-user-select: none;
201+
-khtml-user-select: none;
202+
-moz-user-select: none;
203+
-ms-user-select: none;
204+
user-select: none;
205+
}

0 commit comments

Comments
 (0)
Please sign in to comment.