-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
90 lines (80 loc) · 1.37 KB
/
app.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
.side-box-content, .blue_box_top, .blue_box_bottom, .side-box-with-image, .r_blue {
background-color: blue;
}
h1 { font-size: 2em;}
h2 { font-size: 1.8em;}
dd {
margin-left: 0.5em;
}
.orders-list {
margin: 0;
}
.panel {
box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
border-radius: 8px;
margin-bottom: 1em;
}
/* order states */
.created {
color: #29ae9b;
}
.billed {
color: #ff941c;
}
.shipped {
color: #80b0d3;
}
/*.recurrable-bar{
padding: 0.5em;
height: 50px;
}*/
.recurrable-bar .address {
font-weight: bold;
}
.preparation {
/*width: 50px;*/
/*float: left;*/
/*margin: 0 0.4rem;*/
}
.order-items {
padding: 1em;
margin: 0;
font-weight: bold;
}
.order-item {
margin-bottom: 0.7em;
}
.order-item:last-child {
margin-bottom: 0;
}
.recurrable-bar {
padding: 0.5em;
border-bottom: solid 2px #697D8B;
}
.recurrable-bar, .bd {overflow:hidden; _overflow:visible; zoom:1; padding-top: 0.35em;}
.button-group {
padding: 1em 1.5em;
text-align: center;
border-top: solid 1px #e1e1e1;
}
.button-group a {
color: #5fb7b1;
font-weight: bold;
}
.cta {
display: inline-block;
font-size: 1em;
font-weight: 400;
padding: 0.5em 1.25em;
border: none;
border-radius: 4px;
color: white;
background-color: #5fb7b1;
appearance: none;
cursor: pointer;
user-select: none;
text-decoration: none;
}
.cta:hover {
background-color: #4C948F;
}