-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlunchbag.css
80 lines (67 loc) · 1 KB
/
lunchbag.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
body {
margin: 0px;
font-size: 1.2em;
font-family: helvetica, arial, verdana;
}
h1, h2, h3, h4, h5, h6 {
margin-top: .5%;
margin-bottom: .5%;
}
ul {
margin-top: 2%;
margin-bottom: 2%;
}
.listItems li {
cursor: pointer;
}
.listItems li.selected {
background: #99CCFF;
}
.button {
border: 2px solid #cccccc;
background: black;
color: white;
font-size: 1.1em;
padding-left: 12px;
padding-right: 12px;
}
.textbox {
border: 2px solid #cccccc;
font-size: 1.1em;
padding-left: 12px;
padding-right: 12px;
}
.threeColumns {
height: 600px;
width: 100%;
}
.threeColumns .colA {
width: 26%;
height: 100%;
float: left;
background: #cccccc;
padding: 2%;
}
.threeColumns .colB {
width: 36%;
height: 100%;
float: left;
background: #eeeeee;
padding: 2%;
}
.threeColumns .colC {
width: 26%;
height: 100%;
float: right;
background: #666666;
padding: 2%;
}
.logoAndGreeting {
text-align: center;
}
.listManager {
text-align: center;
}
.listContainer .title {
cursor: pointer;
}