forked from savingstar/coupon-display-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (54 loc) · 1.32 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
.btn-primary {
background-color: #9c9c9c;
border-color: #9c9c9c; }
.btn-primary:hover {
background-color: #9c9c9c;
border-color: #9c9c9c; }
.coupon-cell {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-top: 15px;
margin-bottom: 15px;
border-color: #a1a1a1;
border-style: solid;
border-width: 2px;
border-radius: 10px; }
.coupon-header {
background-color: #6c6c6c;
border-top-right-radius: 8px;
border-top-left-radius: 8px; }
.coupon-title {
padding-top: 15px;
padding-bottom: 15px;
margin-bottom: 0;
color: #ffffff; }
.coupon-body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-top: 20px;
padding-bottom: 20px; }
.coupon-description {
margin-bottom: 0;
font-size: 0.9rem; }
.coupon-footer {
padding-top: 10px;
padding-bottom: 10px;
background-color: #f0f0f0;
border-top-color: #cdcdcd;
border-top-style: solid;
border-top-width: 2px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px; }
.coupon-btn {
font-size: 0.9rem;
text-transform: uppercase; }
/*# sourceMappingURL=style.css.map */